depthFromJson function

Depth depthFromJson(
  1. String str
)

quantity : 121 price : 132 orders : 123 Used to decode Depth json

Implementation

///Used to decode Depth json
Depth depthFromJson(String str) => Depth.fromJson(json.decode(str));