removeData method

void removeData(
  1. GraphicsDrawingData data
)

Removes, if enqueued, the specified GraphicsDrawingData instance from the drawing queue list. This should be used only if you are operating with Path and Paint directly.

Implementation

void removeData(GraphicsDrawingData data) {
  _drawingQueue.remove(data);
}