GoogleChromeManagementVersionsV1DeviceTrustConfig.fromJson constructor

GoogleChromeManagementVersionsV1DeviceTrustConfig.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementVersionsV1DeviceTrustConfig.fromJson(core.Map json_)
  : this(
      scope: json_['scope'] as core.String?,
      serviceAccounts: (json_['serviceAccounts'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      serviceProvider: json_['serviceProvider'] as core.String?,
      urlMatchers: (json_['urlMatchers'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );