TakerLongShortRatio.fromMap constructor

TakerLongShortRatio.fromMap(
  1. Map m
)

Implementation

TakerLongShortRatio.fromMap(Map m)
    : buySellRatio = double.parse(m['buySellRatio']),
      buyVol = double.parse(m['buyVol']),
      sellVol = double.parse(m['sellVol']),
      timestamp = double.parse(m['timestamp']);