PostAddress constructor

const PostAddress({
  1. required String streetLine1,
  2. required String streetLine2,
  3. required String city,
  4. required String state,
  5. required String countryIso2,
  6. required String postCode,
})

Post Address constructor.

Implementation

const PostAddress({
  required this.streetLine1,
  required this.streetLine2,
  required this.city,
  required this.state,
  required this.countryIso2,
  required this.postCode,
}) : super._();