enableLogs static method

Future<void> enableLogs(
  1. bool flag
)

Method to enable the logs. By default, logs are disabled

Implementation

static Future<void> enableLogs(bool flag) async {
  await _channel.invokeMethod('enableLogs', [flag]);
}