stopNote method
Stop a MIDI note
note - MIDI note number (0-127)
velocity - Release velocity (0-127)
channel - MIDI channel (0-15)
Implementation
@override
Future<void> stopNote({
required int note,
int velocity = 64,
int channel = 0,
}) async {
debugPrint('Web platform: Note stopping not yet implemented');
}