saveLayerPaint property

Paint? get saveLayerPaint

The Paint to use for the save layer.

If this is null, Paint() will be used.

Implementation

Paint? get saveLayerPaint => _saveLayerPaint;
set saveLayerPaint (Paint? saveLayerPaint)

Implementation

set saveLayerPaint(Paint? saveLayerPaint) {
  if (_saveLayerPaint == saveLayerPaint) return;
  markNeedsPaint();
  _saveLayerPaint = saveLayerPaint;
}