popData method

GraphicsDrawingData? popData()

Removes the last GraphicsDrawingData from the drawing queue. This should be used only if you are operating with Path and Paint directly.

Implementation

GraphicsDrawingData? popData() {
  return _drawingQueue.removeLast();
}