enableUserHelper method
Enables the user helper with default configuration.
This is equivalent to calling configureUserHelper with enabled: true
.
The user helper will assist users in resolving app-related permission and sensor issues.
Implementation
Future<void> enableUserHelper() async {
await configureUserHelper(const UserHelperOptions(enabled: true));
}