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