GoogleCloudIdentitytoolkitAdminV2OAuthIdpConfig.fromJson constructor

GoogleCloudIdentitytoolkitAdminV2OAuthIdpConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIdentitytoolkitAdminV2OAuthIdpConfig.fromJson(core.Map json_)
  : this(
      clientId: json_['clientId'] as core.String?,
      clientSecret: json_['clientSecret'] as core.String?,
      displayName: json_['displayName'] as core.String?,
      enabled: json_['enabled'] as core.bool?,
      issuer: json_['issuer'] as core.String?,
      name: json_['name'] as core.String?,
      responseType: json_.containsKey('responseType')
          ? GoogleCloudIdentitytoolkitAdminV2OAuthResponseType.fromJson(
              json_['responseType'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );