DecodedTransferInstruction constructor

const DecodedTransferInstruction({
  1. required Pubkey fromPubkey,
  2. required Pubkey toPubkey,
  3. required u64 lamports,
})

Decoded transfer system transaction instruction.

Implementation

const DecodedTransferInstruction({
  required this.fromPubkey,
  required this.toPubkey,
  required this.lamports,
});