GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfig.fromJson constructor
GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfig.fromJson(
- Map _json
Implementation
GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfig.fromJson(
core.Map _json)
: this(
enabledProviders: _json.containsKey('enabledProviders')
? (_json['enabledProviders'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
state:
_json.containsKey('state') ? _json['state'] as core.String : null,
);