setDebugErrorIndicator static method

Future<void> setDebugErrorIndicator(
  1. bool value
)

Enables or disables the debug error indicator.

Implementation

static Future<void> setDebugErrorIndicator(bool value) async {
  await _channel.invokeMethod('enableDebugErrorIndicator', value);
  _debugErrorIndicatorEnabled = value;
}