playNote method

  1. @override
Future<void> playNote({
  1. required int note,
  2. int velocity = 64,
  3. int channel = 0,
})
override

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');
}