SoundFont.fromFile constructor

SoundFont.fromFile(
  1. String path
)

Loads a SoundFont from the file.

Implementation

factory SoundFont.fromFile(String path) {

  BinaryReader reader = BinaryReader.fromFile(path);

  return SoundFont.fromBinaryReader(reader);
}