toggleMethodSwizzling static method

void toggleMethodSwizzling(
  1. bool value
)

Implementation

static void toggleMethodSwizzling(bool value) {
  // Invoke native method (iOS only)
  if (!kIsWeb && Platform.isIOS) {
    _channel.invokeMethod('toggleMethodSwizzling', <dynamic>[value]);
  }
}