setLogLevel method

Future<void> setLogLevel(
  1. int level
)

Implementation

Future<void> setLogLevel(int level) async {
  return await instanceManager.channel
      .invokeMethod('setLogLevel', <String, int>{'level': level});
}