startTimestampInMillis property

int get startTimestampInMillis

Timestamp of the first sensor data in the log, in milliseconds since epoch.

This value represents the timestamp of the first recorded sensor sample in the log. It can be used to align log events with other time-based data.

Returns

  • An integer with milliseconds since epoch for the first sample.

Implementation

int get startTimestampInMillis {
  final OperationResult resultString = objectMethod(
    pointerId,
    'LogMetadata',
    'getStartTimestampInMillis',
  );
  return resultString['result'];
}