get method
Retrieve the value from the reader.
Implementation
@override
OMeshBinaryFormat get(ByteReader reader, [Endian? endian]) {
  final specVersion = reader.uint8();
  final mesh = OMeshRectPayloadType.instance.get(reader, endian);
  return (
    specVersion: specVersion,
    mesh: mesh,
  );
}