tint property

Color? tint

Returns the current tint color applied to the SVG image.

Implementation

Color? get tint {
  return _tint;
}
void tint=(Color? value)

Sets the tint color that will be applied to the SVG image.

Implementation

set tint(Color? value) {
  _tint = value;
  _invalidColor = true;
  usePaint = true;
  requiresRedraw();
}