ExternalAccountIdentifiers.fromJson constructor
ExternalAccountIdentifiers.fromJson(
- Map json_
Implementation
ExternalAccountIdentifiers.fromJson(core.Map json_)
: this(
externalAccountId: json_.containsKey('externalAccountId')
? json_['externalAccountId'] as core.String
: null,
obfuscatedExternalAccountId:
json_.containsKey('obfuscatedExternalAccountId')
? json_['obfuscatedExternalAccountId'] as core.String
: null,
obfuscatedExternalProfileId:
json_.containsKey('obfuscatedExternalProfileId')
? json_['obfuscatedExternalProfileId'] as core.String
: null,
);