finishTime property

int get finishTime

Get the finsih time of the session in milliseconds since epoch.

Returns

The finish time of the session in milliseconds since epoch.

Throws

  • An exception if it fails.

Implementation

int get finishTime {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'DriverBehaviourAnalysis',
    'getFinishTime',
  );

  return resultString['result'];
}