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