propertyValue property

int get propertyValue

The color value

Implementation

int get propertyValue => _propertyValue;
set propertyValue (int value)

Change the _propertyValue field value. propertyValueChanged will be invoked only if the field's value has changed.

Implementation

set propertyValue(int value) {
  if (_propertyValue == value) {
    return;
  }
  int from = _propertyValue;
  _propertyValue = value;
  if (hasValidated) {
    propertyValueChanged(from, value);
  }
}