SoundFontVersion.fromReader constructor
SoundFontVersion.fromReader(
- BinaryReader reader
Implementation
factory SoundFontVersion.fromReader(BinaryReader reader) {
int major = reader.readInt16();
int minor = reader.readInt16();
return SoundFontVersion(major: major, minor: minor);
}