ManagedConfigurationsForUserListResponse.fromJson constructor

ManagedConfigurationsForUserListResponse.fromJson(
  1. Map json_
)

Implementation

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