TransferInfo constructor

const TransferInfo({
  1. required String ledgerId,
  2. required String fromAccountId,
  3. required String toAccountId,
  4. required int amount,
  5. required List<Any> metadata,
  6. required int nonce,
})

Implementation

const TransferInfo({
  required this.ledgerId,
  required this.fromAccountId,
  required this.toAccountId,
  required this.amount,
  required this.metadata,
  required this.nonce,
});