FundingAsset.fromMap constructor

FundingAsset.fromMap(
  1. Map m
)

Implementation

FundingAsset.fromMap(Map m)
    : asset = m['asset'],
      free = double.parse(m['free']),
      locked = double.parse(m['locked']),
      freeze = double.parse(m['freeze']),
      withdrawing = double.parse(m['withdrawing']),
      btcValuation = double.parse(m['btcValuation']);