enableDebug static method

void enableDebug(
  1. bool enable
)

Implementation

static void enableDebug(bool enable) {
  if (kDebugMode) {
    _methodChannel.invokeMethod("enableDebug", {
      'enable': enable,
    });
  }
}