type property
      
      OscillatorType
      get
      type
      
    
    
    
Implementation
OscillatorType get type =>
    OscillatorType.fromValue(js_util.getProperty(this, 'type'));
      
      set
      type
      (OscillatorType newValue) 
      
    
    
    
Implementation
set type(OscillatorType newValue) {
  js_util.setProperty(this, 'type', newValue.value);
}