value property
      
      String?
      get
      value
      
    
    
The value to pre-fill in the input box.
Implementation
_i2.String? get value => _i5.getProperty(
      this,
      'value',
    );
      
      set
      value
      (String? value) 
      
    
    
    
Implementation
set value(_i2.String? value) {
  _i5.setProperty(
    this,
    'value',
    value ?? _i6.undefined,
  );
}