getProperty method
Request to retrieve a capture property from a given device.
Implementation
Future<CaptureProperty> getProperty(CaptureProperty property) async {
if (this.transport != null) {
return this.transport!.getProperty(this.clientOrDeviceHandle, property);
}
throw CaptureException(
SktErrors.ESKT_NOTINITIALIZED, 'Transport is not initialized');
}