Done constructor

Done({
  1. String? type,
  2. DateTime? time,
  3. String? productId,
  4. int? sequence,
  5. String? orderId,
  6. double? price,
  7. double? remainingSize,
  8. SideEnum? side,
  9. ReasonEnum? reason,
})

Implementation

Done({
  this.type,
  this.time,
  this.productId,
  this.sequence,
  this.orderId,
  this.price,
  this.remainingSize,
  this.side,
  this.reason,
});