ShakeDetector.waitForStart constructor

ShakeDetector.waitForStart({
  1. PhoneShakeCallback? onPhoneShake,
  2. double shakeThresholdGravity = 2.7,
  3. int shakeSlopTimeMS = 500,
  4. int shakeCountResetTime = 3000,
})

This constructor waits until startListening is called

Implementation

ShakeDetector.waitForStart({
  this.onPhoneShake,
  this.shakeThresholdGravity = 2.7,
  this.shakeSlopTimeMS = 500,
  this.shakeCountResetTime = 3000,
});