disableUserHelper method

Future<void> disableUserHelper()

Disables the user helper. This is equivalent to calling configureUserHelper with enabled: false.

Implementation

Future<void> disableUserHelper() {
  return configureUserHelper(const UserHelperOptions(enabled: false));
}