NotifyCanisterArgs.fromJson constructor
NotifyCanisterArgs.fromJson(
- Map map
Implementation
factory NotifyCanisterArgs.fromJson(Map map) {
return NotifyCanisterArgs(
toSubAccount: map['to_subaccount'],
fromSubAccount: map['from_subaccount'],
toCanister: map['to_canister'],
maxFee: ICPTs.fromJson(map['max_fee']),
blockHeight: map['block_height'],
);
}