toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'to_subaccount': toSubAccount != null ? [toSubAccount] : [],
    'from_subaccount': fromSubAccount != null ? [fromSubAccount] : [],
    'to_canister': toCanister,
    'max_fee': maxFee.toJson(),
    'block_height': blockHeight,
  }..removeWhere((key, value) => value == null);
}