AccountMeta constructor

const AccountMeta(
  1. Pubkey pubkey, {
  2. bool isSigner = false,
  3. bool isWritable = false,
})

Account metadata used to define instruction accounts.

Implementation

const AccountMeta(
  this.pubkey, {
  this.isSigner = false,
  this.isWritable = false,
});