AddressDto constructor
- String? country,
- String? state,
- String? city,
- String? district,
- String? addressLine,
- double? longitude,
- double? latitude,
- String? comments,
Implementation
AddressDto({
this.country,
this.state,
this.city,
this.district,
this.addressLine,
this.longitude,
this.latitude,
this.comments,
});