NotifyCanisterArgs constructor

const NotifyCanisterArgs({
  1. List<int>? toSubAccount,
  2. List<int>? fromSubAccount,
  3. required Principal toCanister,
  4. required ICPTs maxFee,
  5. required BigInt blockHeight,
})

Implementation

const NotifyCanisterArgs({
  this.toSubAccount,
  this.fromSubAccount,
  required this.toCanister,
  required this.maxFee,
  required this.blockHeight,
});