blendModeValue property Null safety
inherited
Implementation
int get blendModeValue => _blendModeValue;
inherited
Change the _blendModeValue
field value.
blendModeValueChanged will be invoked only if the field's value has
changed.
Implementation
set blendModeValue(int value) {
if (_blendModeValue == value) {
return;
}
int from = _blendModeValue;
_blendModeValue = value;
if (hasValidated) {
blendModeValueChanged(from, value);
}
}