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