CheckCash.fromJson constructor
Implementation
CheckCash.fromJson(Map<String, dynamic> json)
: checkId = json["check_id"],
amount = json["amount"] == null
? null
: CurrencyAmount.fromJson(json["amount"]),
deliverMin = json["deliver_min"] == null
? null
: CurrencyAmount.fromJson(json["deliver_min"]),
super.json(json);