play method
Trigger the platform-appropriate haptic feedback.
Implementation
Future<void> play() async {
switch (_config) {
case AdaptivePresetCallback():
await _config.play();
case AdaptivePresetPattern():
await _composer.play();
}
}