endTimestampInMillis property

int get endTimestampInMillis

Get timestamp of the last sensor data.

Returns

  • Timestamp of the last sensor data

Throws

  • An exception if it fails

Implementation

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