DeliveryContent constructor

DeliveryContent({
  1. int? id,
  2. String? deliveryType,
  3. String? deliveryTime,
  4. String? timeUnit,
})

Implementation

DeliveryContent({
  this.id,
  this.deliveryType,
  this.deliveryTime,
  this.timeUnit,
});