EscrowCreate.fromJson constructor
Implementation
EscrowCreate.fromJson(Map<String, dynamic> json)
: amount = parseBigInt(json["amount"])!,
destination = json["destination"],
destinationTag = json["destination_tag"],
cancelAfter = json["cancel_after"],
finishAfter = json["finish_after"],
condition = json["condition"],
super.json(json);