setLogLevel static method

dynamic setLogLevel(
  1. LogLevel minLevel
)

Set the minimum level of messages to log

Implementation

static setLogLevel(LogLevel minLevel) {
  _channel.invokeMethod("setLogLevel", {"minLevel": minLevel.platformLevel});
}