ProductBook constructor

ProductBook({
  1. required String productId,
  2. required List<PriceLevel> bids,
  3. required List<PriceLevel> asks,
  4. DateTime? time,
})

ProductBook constructor

Implementation

ProductBook(
    {required this.productId,
    required this.bids,
    required this.asks,
    this.time});