Address constructor

Address({
  1. required String id,
  2. required String name,
  3. required String line1,
  4. required String? line2,
  5. required String city,
  6. required String state,
  7. required String country,
  8. required String zip,
  9. required dynamic phoneNumber,
  10. required int createdAt,
})

Implementation

Address({
  required this.id,
  required this.name,
  required this.line1,
  required this.line2,
  required this.city,
  required this.state,
  required this.country,
  required this.zip,
  required this.phoneNumber,
  required this.createdAt,
});