RestrictedPaymentCountries.fromJson constructor

RestrictedPaymentCountries.fromJson(
  1. Map json_
)

Implementation

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