Open constructor

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

Implementation

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