debug static method
Implementation
static void debug(bool enableDebug) {
try {
plotlineChannel.invokeMethod('debug', <String, dynamic>{'debug': enableDebug});
shouldEnableDebug = enableDebug;
} catch (e) {
debugPrint("Error in debug: $e");
}
}