ManagedConfigurationsSettingsListResponse.fromJson constructor

ManagedConfigurationsSettingsListResponse.fromJson(
  1. Map json_
)

Implementation

ManagedConfigurationsSettingsListResponse.fromJson(core.Map json_)
    : this(
        managedConfigurationsSettings:
            (json_['managedConfigurationsSettings'] as core.List?)
                ?.map((value) => ManagedConfigurationsSettings.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList(),
      );