Delivery constructor

Delivery({
  1. String? type,
  2. DateTime? time,
  3. bool? doorToDoor,
  4. bool? productPaid,
  5. int? equipmentId,
})

Implementation

Delivery({
  this.type,
  this.time,
  this.doorToDoor,
  this.productPaid,
  this.equipmentId,
});