NotifyCanisterArgs constructor

NotifyCanisterArgs({
  1. List<int>? to_subaccount,
  2. List<int>? from_subaccount,
  3. required Principal to_canister,
  4. required ICPTs max_fee,
  5. required BigInt block_height,
})

Implementation

NotifyCanisterArgs(
    {
    // ignore: non_constant_identifier_names
    this.to_subaccount,
    // ignore: non_constant_identifier_names
    this.from_subaccount,
    // ignore: non_constant_identifier_names
    required this.to_canister,
    // ignore: non_constant_identifier_names
    required this.max_fee,
    // ignore: non_constant_identifier_names
    required this.block_height});