Address constructor

Address({
  1. int? id,
  2. String? addressLineOne,
  3. String? addressLineTwo,
  4. String? addressLineThree,
  5. String? addressLineFour,
  6. String? addressLineFive,
  7. String? addressLineSix,
  8. String? latitude,
  9. String? longitude,
  10. String? createdBy,
  11. String? updatedBy,
  12. String? createdDate,
  13. String? updatedDate,
  14. String? countryCode,
})

Implementation

Address(
    {this.id, this.addressLineOne, this.addressLineTwo, this.addressLineThree, this.addressLineFour, this.addressLineFive, this.addressLineSix, this.latitude, this.longitude, this.createdBy, this.updatedBy, this.createdDate, this.updatedDate, this.countryCode});