setLogLevel static method
Sets the internal FlutterBlue log level
Implementation
static Future<void> setLogLevel(LogLevel level, {color = true}) async {
_logLevel = level;
await _invokePlatform(
() => FlutterBluePlusPlatform.instance.setLogLevel(BmSetLogLevelRequest(logLevel: level, logColor: color)));
}