description property
LSLDescription
get
description
Access to the stream's metadata/description
Implementation
LSLDescription get description {
if (_streamInfo == null) {
throw LSLException('StreamInfo not created or destroyed');
}
return LSLDescription(_streamInfo!);
}