toWritable method
Create an AccountMeta instance indicating the account is writable but not a signer.
Implementation
AccountMeta toWritable() {
return AccountMeta(publicKey: this, isSigner: false, isWritable: true);
}
Create an AccountMeta instance indicating the account is writable but not a signer.
AccountMeta toWritable() {
return AccountMeta(publicKey: this, isSigner: false, isWritable: true);
}