IdentityServiceAzureADConfig.fromJson constructor

IdentityServiceAzureADConfig.fromJson(
  1. Map json_
)

Implementation

IdentityServiceAzureADConfig.fromJson(core.Map json_)
    : this(
        clientId: json_.containsKey('clientId')
            ? json_['clientId'] as core.String
            : null,
        clientSecret: json_.containsKey('clientSecret')
            ? json_['clientSecret'] as core.String
            : null,
        encryptedClientSecret: json_.containsKey('encryptedClientSecret')
            ? json_['encryptedClientSecret'] as core.String
            : null,
        groupFormat: json_.containsKey('groupFormat')
            ? json_['groupFormat'] as core.String
            : null,
        kubectlRedirectUri: json_.containsKey('kubectlRedirectUri')
            ? json_['kubectlRedirectUri'] as core.String
            : null,
        tenant: json_.containsKey('tenant')
            ? json_['tenant'] as core.String
            : null,
        userClaim: json_.containsKey('userClaim')
            ? json_['userClaim'] as core.String
            : null,
      );