transformAffectsStroke property

bool transformAffectsStroke

Implementation

bool get transformAffectsStroke => _transformAffectsStroke;
void transformAffectsStroke=(bool value)

Change the _transformAffectsStroke field value. transformAffectsStrokeChanged will be invoked only if the field's value has changed.

Implementation

set transformAffectsStroke(bool value) {
  if (_transformAffectsStroke == value) {
    return;
  }
  bool from = _transformAffectsStroke;
  _transformAffectsStroke = value;
  if (hasValidated) {
    transformAffectsStrokeChanged(from, value);
  }
}