depth_entity.dart 174 B

1234567891011
  1. class DepthEntity {
  2. double price;
  3. double vol;
  4. DepthEntity(this.price, this.vol);
  5. @override
  6. String toString() {
  7. return 'Data{price: $price, vol: $vol}';
  8. }
  9. }