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