Graphics graphics

Specifies the Graphics object that belongs to this sprite where vector drawing commands can occur.

Source

Graphics get graphics {
  return _graphics != null ? _graphics : _graphics = new Graphics();
}
void graphics=(Graphics value)

Source

set graphics(Graphics value) {
  _graphics = value;
}