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.

Implementation

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

  return resultString['result'];
}