SavedOrderModel constructor

SavedOrderModel({
  1. String? orderId,
  2. int? count,
  3. double? value,
  4. String? timeStamp,
  5. String? deliveryTimeStamp,
  6. String? deliveryStatus,
  7. String? orderStatus,
  8. String? paymentStatus,
  9. bool? outofStock,
})

Implementation

SavedOrderModel(
    {this.orderId,
    this.count,
    this.value,
    this.timeStamp,
    this.deliveryTimeStamp,
    this.deliveryStatus,
    this.orderStatus,
    this.paymentStatus,
    this.outofStock});