ExternalAccountIdentifiers.fromJson constructor

ExternalAccountIdentifiers.fromJson(
  1. Map json_
)

Implementation

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