TransferArgs constructor

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

Implementation

TransferArgs({
  // 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,
});