setLogConfig static method

Future<void> setLogConfig(
  1. int logLevel
)

Implementation

static Future<void> setLogConfig(int logLevel) {
  Map config = {'logLevel': logLevel};

  ZIM.getInstance()?.setLogConfig(mapToJSObj(config));

  return Future.value();
}