AddressDto constructor

AddressDto({
  1. String? country,
  2. String? state,
  3. String? city,
  4. String? district,
  5. String? addressLine,
  6. double? longitude,
  7. double? latitude,
  8. String? comments,
})

Implementation

AddressDto({
  this.country,
  this.state,
  this.city,
  this.district,
  this.addressLine,
  this.longitude,
  this.latitude,
  this.comments,
});