IdentityServiceServiceAccountConfig.fromJson constructor
      
      IdentityServiceServiceAccountConfig.fromJson(
    
    
- 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,
      );