DeliveryAddressRequest constructor

DeliveryAddressRequest({
  1. required String fullAddress,
  2. String? roomType,
  3. String? roomNumber,
})

Implementation

DeliveryAddressRequest({
  required this.fullAddress,
  this.roomType,
  this.roomNumber,
});