enableDebug static method

void enableDebug(
  1. bool enable
)

Implementation

static void enableDebug(bool enable) {
  if (kDebugMode && defaultTargetPlatform == TargetPlatform.iOS) {
    _methodChannel.invokeMethod("enableDebug", {
      'enable': enable,
    });
  }
}