currentFrameTimeStamp property

Duration currentFrameTimeStamp

The time stamp for the frame currently being processed.

This is only valid while handleBeginFrame is running, i.e. while a frame is being produced.

Implementation

Duration get currentFrameTimeStamp {
  assert(_currentFrameTimeStamp != null);
  return _currentFrameTimeStamp;
}