AccountSubscribe constructor
AccountSubscribe(
- Pubkey pubkey, {
- AccountSubscribeConfig? config,
Creates a method handler for accountSubscribe
.
Implementation
AccountSubscribe(
final Pubkey pubkey, {
final AccountSubscribeConfig? config,
}) : super(
'accountSubscribe',
values: [pubkey.toBase58()],
config: config ?? const AccountSubscribeConfig(),
);