Address constructor

const Address({
  1. required String country,
  2. String? line1,
  3. String? line2,
  4. String? area1,
  5. required String area2,
  6. String? postalCode,
})

Implementation

const Address({required this.country, this.line1, this.line2, this.area1, required this.area2, this.postalCode});