MakeTransferOptions constructor

MakeTransferOptions({
  1. required String amount,
  2. required String destination,
  3. required Keypair owner,
  4. Commitment? commitment,
  5. String? mint,
  6. String? referenceId,
  7. String? referenceType,
  8. bool? senderCreate,
  9. TransactionType? type,
})

Implementation

MakeTransferOptions(
    {required this.amount,
    required this.destination,
    required this.owner,
    this.commitment,
    this.mint,
    this.referenceId,
    this.referenceType,
    this.senderCreate,
    this.type});