type property
      
      InputContextType
      get
      type
      
    
    
Type of value this text field edits, (Text, Number, URL, etc)
Implementation
InputContextType get type => InputContextType.fromJS(_wrapped.type);
      
      set
      type
      (InputContextType v) 
      
    
    
    
Implementation
set type(InputContextType v) {
  _wrapped.type = v.toJS;
}