Depth.fromJson constructor
Depth.fromJson(
- dynamic json
Used to decode Depth json
Implementation
Depth.fromJson(dynamic json) {
_quantity = json['quantity'];
_price = json['price'];
_orders = json['orders'];
}