Depth.fromJson constructor

Depth.fromJson(
  1. dynamic json
)

Implementation

Depth.fromJson(dynamic json) {
  _quantity = json['quantity'];
  _price = json['price'];
  _orders = json['orders'];
}