Graphics graphics

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

Source

@override
Graphics get graphics {
  return _graphics ??= new Graphics();
}
void graphics=(Graphics value)

Source

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