ProductBook constructor
ProductBook({
- required String productId,
- required List<
PriceLevel> bids, - required List<
PriceLevel> asks, - DateTime? time,
ProductBook constructor
Implementation
ProductBook(
{required this.productId,
required this.bids,
required this.asks,
this.time});