CheckCreate.fromJson constructor

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

Implementation

CheckCreate.fromJson(Map<String, dynamic> json)
    : destination = json["destination"],
      destinationTag = json["destination_tag"],
      sendMax = CurrencyAmount.fromJson(json["send_max"]),
      expiration = json["expiration"],
      invoiceId = json["invoice_id"],
      super.json(json);