shouldPromptWalletDelegation method
- @Deprecated('Use wallets.waas.delegation.shouldPromptWalletDelegation instead')
Checks if the user should be prompted for wallet delegation.
Deprecated: Use WaasModule.delegation.shouldPromptWalletDelegation instead.
Implementation
@Deprecated(
'Use wallets.waas.delegation.shouldPromptWalletDelegation instead')
Future<bool> shouldPromptWalletDelegation() {
return requestChannel.request<bool>(
'shouldPromptWalletDelegation',
args: [],
builder: (data) => data as bool,
);
}