enableLogging method

  1. @override
Future<void> enableLogging(
  1. bool enabled
)
override

Enables or disables logging for the analytics SDK.

Implementation

@override
Future<void> enableLogging(bool enabled) async {
  await _channel.invokeMethod('enableLogging', {'enabled': enabled});
}