setLogLevel static method

Future setLogLevel(
  1. String logLevel
)

Implementation

static Future setLogLevel(String logLevel) async {
  try {
    await _channel.invokeMethod('setLogLevel', {'logLevel': logLevel});
  } on PlatformException catch (e) {
    print(e);
  }
}