toWritable method

AccountMeta toWritable()

Create an AccountMeta instance indicating the account is writable but not a signer.

Implementation

AccountMeta toWritable() {
  return AccountMeta(publicKey: this, isSigner: false, isWritable: true);
}