Snapshot constructor

Snapshot({
  1. String? type,
  2. String? productId,
  3. List<Tuple2<double, double>>? bids,
  4. List<Tuple2<double, double>>? asks,
})

Implementation

Snapshot({
  this.type,
  this.productId,
  this.bids,
  this.asks,
});