DeliveryAddressEntity constructor

DeliveryAddressEntity({
  1. required int deliveryId,
  2. required String updated,
  3. required String addressHash,
  4. required int id,
  5. required String fullAddress,
  6. String? roomType,
  7. String? roomNumber,
})

Implementation

DeliveryAddressEntity({
  required this.deliveryId,
  required this.updated,
  required this.addressHash,
  required this.id,
  required this.fullAddress,
  this.roomType,
  this.roomNumber,
});