dataSourceType property
The type of this data source.
Indicates whether the data source provides live data (sensors/external) or playback/simulated data.
Returns
- DataSourceType: The data source type (for example, DataSourceType.live or DataSourceType.playback).
Implementation
DataSourceType get dataSourceType {
final OperationResult resultString = objectMethod(
pointerId,
'DataSourceContainer',
'getDataSourceType',
);
return DataSourceTypeExtension.fromId(resultString['result']);
}