SendArgs constructor

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

Implementation

SendArgs({
  // ignore: non_constant_identifier_names
  required this.to,
  required this.fee,
  required this.memo,
  required this.amount,
  // ignore: non_constant_identifier_names
  this.from_subaccount,
  // ignore: non_constant_identifier_names
  this.created_at_time,
});