setLogLevel method

Future<void> setLogLevel(
  1. int value
)

Sets the ApplicationSettings.logLevel to the provided value.

Implementation

Future<void> setLogLevel(int value) async {
  await _settingsRepository?.setLogLevel(value);
}