setDebugErrorIndicator static method
Enables or disables the debug error indicator.
Implementation
static Future<void> setDebugErrorIndicator(bool value) async {
await _channel.invokeMethod('enableDebugErrorIndicator', value);
_debugErrorIndicatorEnabled = value;
}