enableLog method

Future<void> enableLog()

Enables the log function.

note This function is specifically used by Android Platforms.

Implementation

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