endTimestampInMillis property

int get endTimestampInMillis

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

This value represents the timestamp of the final recorded sensor sample contained in the log and can be used together with startTimestampInMillis to compute durations.

Returns

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

Implementation

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