CelebrationFeedback.bundledForPreset constructor
Plays the BuiltinSound best matched to preset.
No asset registration needed — clips are bundled with the package.
Implementation
factory CelebrationFeedback.bundledForPreset(
Preset preset, {
bool enableHaptics = true,
bool enableSound = true,
}) {
return CelebrationFeedback(
enableHaptics: enableHaptics,
enableSound: enableSound,
builtinSound: ConfettiBundledSounds.builtinForPreset(preset),
);
}