UserAddress constructor

UserAddress({
  1. required String street,
  2. String? street2,
  3. required String city,
  4. required String region,
  5. required String postalCode,
  6. required String country,
})

Implementation

UserAddress({
  required this.street,
  this.street2,
  required this.city,
  required this.region,
  required this.postalCode,
  required this.country,
});