EscrowCreate.fromJson constructor

EscrowCreate.fromJson(
  1. Map<String, dynamic> json
)

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);