IdentityServiceServiceAccountConfig.fromJson constructor

IdentityServiceServiceAccountConfig.fromJson(
  1. Map json_
)

Implementation

IdentityServiceServiceAccountConfig.fromJson(core.Map json_)
  : this(
      simpleBindCredentials:
          json_.containsKey('simpleBindCredentials')
              ? IdentityServiceSimpleBindCredentials.fromJson(
                json_['simpleBindCredentials']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );