SendArgs constructor

const SendArgs({
  1. required String to,
  2. required ICPTs fee,
  3. required BigInt memo,
  4. required ICPTs amount,
  5. List<int>? fromSubAccount,
  6. TimeStamp? createdAtTime,
})

Implementation

const SendArgs({
  required this.to,
  required this.fee,
  required this.memo,
  required this.amount,
  this.fromSubAccount,
  this.createdAtTime,
});