toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
      "from": from,
      "codeHash": codeHash,
      "amount": amount,
      "args": List<dynamic>.from(args.map((x) => x.toJson())),
      "maxFee": maxFee,
    };