auxiliaryText property
      
      String?
      get
      auxiliaryText
      
    
    
Text that is shown at the bottom of the candidate window.
Implementation
String? get auxiliaryText => _wrapped.auxiliaryText;
      
      set
      auxiliaryText
      (String? v) 
      
    
    
    
Implementation
set auxiliaryText(String? v) {
  _wrapped.auxiliaryText = v;
}