playPoint method

Future<void> playPoint()

Plays the “point” (tick) SFX (auto‐preloads first).

Implementation

Future<void> playPoint() async {
  await _ensurePreloaded();
  final path = _cachedFiles['tick.wav']!;
  await _fxPlayer.play(DeviceFileSource(path), volume: 0.8);
}