Order constructor

Order({
  1. String? id,
  2. String? createdAt,
  3. String? invoicePrefix,
  4. String? invoiceStartNumber,
  5. bool? guestOrder,
  6. bool? canCreateOrder,
  7. int? minimumCartAmount,
})

Implementation

Order(
    {this.id,
    this.createdAt,
    this.invoicePrefix,
    this.invoiceStartNumber,
    this.guestOrder,
    this.canCreateOrder,
    this.minimumCartAmount});