AddressModel(- {int? id,
- int? customerId,
- String? firstName,
- String? lastName,
- String? address,
- String? building,
- String? floor,
- String? apartment,
- String? postalCode,
- String? mobile,
- bool? isDefault,
- String? name,
- int? zoneId,
- double? latitude,
- double? longitude,
- String? locationUrl,
- CityModel? city,
- int? orderCount}
)
Implementation
AddressModel({
this.id,
this.customerId,
this.firstName,
this.lastName,
this.address,
this.building,
this.floor,
this.apartment,
this.postalCode,
this.mobile,
this.isDefault,
this.name,
this.zoneId,
this.latitude,
this.longitude,
this.locationUrl,
this.city,
this.orderCount,
});