BillingAddressOption constructor

const BillingAddressOption({
  1. required String id,
  2. required String name,
  3. required String label,
  4. required String addressLine1,
  5. String? addressLine2,
  6. required String city,
  7. String? province,
  8. required String country,
  9. required String pin,
  10. String? phone,
})

Implementation

const BillingAddressOption({
  required this.id,
  required this.name,
  required this.label,
  required this.addressLine1,
  this.addressLine2,
  required this.city,
  this.province,
  required this.country,
  required this.pin,
  this.phone,
});