ManagedConfigurationsForDeviceListResponse.fromJson constructor

ManagedConfigurationsForDeviceListResponse.fromJson(
  1. Map json_
)

Implementation

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