UFUAddressModel constructor

UFUAddressModel({
  1. String? id,
  2. String? address,
  3. String? address1,
  4. String? address2,
  5. String? completeAddress,
  6. String? city,
  7. String? state,
  8. String? country,
  9. String? postcode,
  10. double? latitude,
  11. double? longitude,
  12. String? placeId,
  13. int? userId,
  14. DateTime? createdAt,
  15. DateTime? updatedAt,
})

Implementation

UFUAddressModel({
  this.id,
  this.address,
  this.address1,
  this.address2,
  this.completeAddress,
  this.city,
  this.state,
  this.country,
  this.postcode,
  this.latitude,
  this.longitude,
  this.placeId,
  this.userId,
  this.createdAt,
  this.updatedAt,
});