dataSourceType property

DataSourceType get dataSourceType

The type of this data source.

Indicates whether the data source provides live data (sensors/external) or playback/simulated data.

Returns

Implementation

DataSourceType get dataSourceType {
  final OperationResult resultString = objectMethod(
    pointerId,
    'DataSourceContainer',
    'getDataSourceType',
  );

  return DataSourceTypeExtension.fromId(resultString['result']);
}