Change constructor

Change({
  1. String? type,
  2. DateTime? time,
  3. int? sequence,
  4. String? orderId,
  5. String? productId,
  6. double? newSize,
  7. double? oldSize,
  8. double? newFunds,
  9. double? oldFunds,
  10. double? price,
  11. SideEnum? side,
})

Implementation

Change(
    {this.type,
    this.time,
    this.sequence,
    this.orderId,
    this.productId,
    this.newSize,
    this.oldSize,
    this.newFunds,
    this.oldFunds,
    this.price,
    this.side});