ShippingAddressParameters constructor

ShippingAddressParameters({
  1. List<String>? allowedCountryCodes,
  2. bool? phoneNumberRequired,
})

This object is used to set shipping restrictions.

Implementation

ShippingAddressParameters({
  this.allowedCountryCodes,
  this.phoneNumberRequired,
});