enableLog method

Future<void> enableLog()

Enables the log function.

note This function is specifically used by Android Platforms.

Implementation

Future<void> enableLog() async {
  await _channel.invokeMethod(
    'enableLog',
  );
}