Address constructor

Address({
  1. required String country,
  2. required String streetLine1,
  3. required String streetLine2,
  4. required String city,
  5. required String provinceState,
  6. required String postalCode,
  7. required String category,
})

Implementation

Address(
    {required this.country,
    required this.streetLine1,
    required this.streetLine2,
    required this.city,
    required this.provinceState,
    required this.postalCode,
    required this.category});