blendModeValue property

int blendModeValue
inherited

Implementation

int get blendModeValue => _blendModeValue;
void blendModeValue=(int value)
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);
  }
}