changeSound method

Future<String?> changeSound({
  1. required ByteData? sf2,
  2. String name = 'instrument.sf2',
})
inherited

Needed so that the sound font is loaded On iOS make sure to include the sound_font.SF2 in the Runner folder. This does not work in the simulator.

Implementation

Future<String?> changeSound({
  required ByteData? sf2,
  String name = 'instrument.sf2',
}) async {
  throw UnimplementedError('changeSound() has not been implemented.');
}