svg property

Svg? svg

Returns the current svg instance

Implementation

Svg? get svg => _svg;
void svg=(Svg? svg)

Implementation

set svg(Svg? svg) {
  _svg?.dispose();
  _svg = svg;
}