shouldPromptWalletDelegation method

  1. @Deprecated('Use wallets.waas.delegation.shouldPromptWalletDelegation instead')
Future<bool> shouldPromptWalletDelegation()

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,
  );
}