RestrictedPaymentCountries.fromJson constructor
RestrictedPaymentCountries.fromJson(
- Map json_
Implementation
RestrictedPaymentCountries.fromJson(core.Map json_)
: this(
regionCodes: json_.containsKey('regionCodes')
? (json_['regionCodes'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);