Datum constructor

Datum({
  1. String? cartId,
  2. CustomerInfo? customerInfo,
  3. String? onHoldFrom,
  4. int? holdTimeInSeconds,
  5. CartValue? cartValue,
  6. int? totalItemsInCart,
  7. String? priority,
  8. String? cashRegisterId,
  9. dynamic storeId,
})

Implementation

Datum({
  this.cartId,
  this.customerInfo,
  this.onHoldFrom,
  this.holdTimeInSeconds,
  this.cartValue,
  this.totalItemsInCart,
  this.priority,
  this.cashRegisterId,
  this.storeId,
});