graphics property

Graphics graphics

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

Implementation

Graphics get graphics => _graphics ??= Graphics();
void graphics=(Graphics value)

Implementation

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