setShakingThresholdForiPad static method

Future<void> setShakingThresholdForiPad(
  1. double threshold
)

Sets the threshold value of the shake gesture for iPad Default for iPhone is 0.6. threshold iPhoneShakingThreshold double

Implementation

static Future<void> setShakingThresholdForiPad(double threshold) async {
  if (IBGBuildInfo.instance.isIOS) {
    return _host.setShakingThresholdForiPad(threshold);
  }
}