SoundFont.fromByteData constructor

SoundFont.fromByteData(
  1. ByteData bytes
)

Implementation

factory SoundFont.fromByteData(ByteData bytes) {

  BinaryReader reader = BinaryReader.fromByteData(bytes);

  return SoundFont.fromBinaryReader(reader);
}