I've seen many guides on how to import your own audio files into a flutter app, but that's way more complexity than I need for what I am doing. I thought I could just
import 'package:flutter/services.dart';
...
SystemSound.play(SystemSoundType.click)
To make a clicking sound, but I am not hearing anything.