Value property

Object? get Value
Gets or sets the value to compare with. The Value and OtherPropertyDefinition properties are mutually exclusive; setting one resets the other to null.

Implementation

Object? get Value => this._value;
set Value (Object? value)

Implementation

set Value(Object? value) {
  this._value = value;
  this._otherPropertyDefinition = null;
}