playMidiNote method

Future<String?> playMidiNote({
  1. required int midi,
})
inherited

Play a midi note from the sound_font.SF2 library bundled with the application. Play a midi note in the range between 0-256 Multiple notes can be played at once as seperate calls.

Implementation

Future<String?> playMidiNote({
  required int midi,
}) async {
  throw UnimplementedError('playMidiNote() has not been implemented.');
}