blendMode property

BlendMode blendMode

The blending mode to use when drawing the SVG image.

Implementation

BlendMode get blendMode {
  return _blendMode;
}
void blendMode=(BlendMode value)

Sets the blend mode that will be used to blend the SVG image.

Implementation

set blendMode(BlendMode value) {
  _blendMode = value;
  _invalidColor = true;
  usePaint = true;
  requiresRedraw();
}