AccountMeta.writeable constructor
AccountMeta.writeable({
- required Ed25519HDPublicKey pubKey,
- required bool isSigner,
Constructs a writeable account that is not signer with pubKey
public
key. To make it a signing account set isSigner
to true.
Implementation
factory AccountMeta.writeable({
required Ed25519HDPublicKey pubKey,
required bool isSigner,
}) =>
AccountMeta(
pubKey: pubKey,
isWriteable: true,
isSigner: isSigner,
);