SoundFont.fromByteData constructor
SoundFont.fromByteData(
- ByteData bytes
Implementation
factory SoundFont.fromByteData(ByteData bytes) {
BinaryReader reader = BinaryReader.fromByteData(bytes);
return SoundFont.fromBinaryReader(reader);
}