version property

Get the synthizer version.

Implementation

SynthizerVersion get version {
  synthizer.syz_getVersion(majorPointer, minorPointer, patchPointer);
  return SynthizerVersion(
    majorPointer.value,
    minorPointer.value,
    patchPointer.value,
  );
}