libraryInfo static method
Returns the version of the LSL library.
Implementation
static String libraryInfo() {
final version = lsl_library_info();
if (version.isNullPointer) {
throw LSLException('Failed to get library info');
}
final versionString = version.cast<Utf8>().toDartString();
return versionString;
}