Destination constructor

Destination({
  1. Location? location,
  2. int? order,
  3. String? address,
  4. String? entrance,
  5. String? doorPhone,
  6. int? floor,
  7. String? apartment,
  8. String? comment,
  9. DateTime? arrivedAt,
  10. DateTime? handedOverAt,
  11. DateTime? eta,
  12. DateTime? skippedAt,
  13. Products? products,
  14. Client? client,
})

Implementation

Destination({
  this.location,
  this.order,
  this.address,
  this.entrance,
  this.doorPhone,
  this.floor,
  this.apartment,
  this.comment,
  this.arrivedAt,
  this.handedOverAt,
  this.eta,
  this.skippedAt,
  this.products,
  this.client,
});