setEnabledVerboseLog static method

Future<void> setEnabledVerboseLog(
  1. bool flag
)

Enable verbose info logging of analytics. Will output event JSON data to console.

Implementation

static Future<void> setEnabledVerboseLog(bool flag) async {
  await _channel.invokeMethod('setEnabledVerboseLog', {'flag': flag});
}