OfferCreate.fromJson constructor
Implementation
OfferCreate.fromJson(Map<String, dynamic> json)
: takerGets = CurrencyAmount.fromJson(json["taker_gets"]),
takerPays = CurrencyAmount.fromJson(json["taker_pays"]),
expiration = json["expiration"],
offerSequence = json["offer_sequence"],
super.json(json);