time property

int get time

Timestamp of the event in milliseconds since Unix epoch (UTC).

Returns

  • The event timestamp in milliseconds since epoch.

Implementation

int get time {
  final OperationResult resultString = objectMethod(
    pointerId,
    'MappedDrivingEvent',
    'getTime',
  );

  return resultString['result'];
}