playNote method
Play a MIDI note
note - MIDI note number (0-127)
velocity - Note velocity (0-127)
channel - MIDI channel (0-15)
Implementation
@override
Future<void> playNote({
required int note,
int velocity = 64,
int channel = 0,
}) async {
debugPrint('Web platform: Note playback not yet implemented');
debugPrint('Note: $note, Velocity: $velocity, Channel: $channel');
}