setLogLevel method
void
setLogLevel(
- Level aLevel
Used if the App wants to dynamically change the Log Level. Seldom used. Most of the time the Log Level is specified during the constructor.
Implementation
void setLogLevel(Level aLevel) async {
_logLevel = aLevel;
_logger = Logger(level: aLevel);
if (_isInited != Initialized.notInitialized) {
FlutterSoundPlayerPlatform.instance.setLogLevel(
this,
aLevel,
);
}
}