stop method

Future<void> stop()

Stop an in-progress pattern-based haptic. No-op for callback configs.

Implementation

Future<void> stop() async {
  if (_config is AdaptivePresetPattern) {
    await _composer.stop();
  }
}