availableDataTypes property

List<DataType> get availableDataTypes

List of data types recorded in the log.

Use this getter to discover which sensor/data streams were recorded. The returned list contains DataType values present in the log.

Returns

  • A list of DataType items available in the log.

Implementation

List<DataType> get availableDataTypes {
  final OperationResult resultString = objectMethod(
    pointerId,
    'LogMetadata',
    'getAvailableDataTypes',
  );
  final List<dynamic> res = resultString['result'];
  return res.map((final dynamic e) => DataTypeExtension.fromId(e)).toList();
}