ExternalAccountIdentifiers.fromJson constructor

ExternalAccountIdentifiers.fromJson(
  1. 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,
      );