toSignerAndWritable method
Create an AccountMeta instance indicating the account is both a signer and writable.
Implementation
AccountMeta toSignerAndWritable() {
return AccountMeta(publicKey: this, isSigner: true, isWritable: true);
}
Create an AccountMeta instance indicating the account is both a signer and writable.
AccountMeta toSignerAndWritable() {
return AccountMeta(publicKey: this, isSigner: true, isWritable: true);
}