usage property
      
      SetCandidatesParametersCandidatesUsage?
      get
      usage
      
    
    
The usage or detail description of word.
Implementation
SetCandidatesParametersCandidatesUsage? get usage =>
    _wrapped.usage?.let(SetCandidatesParametersCandidatesUsage.fromJS);
      
      set
      usage
      (SetCandidatesParametersCandidatesUsage? v) 
      
    
    
    
Implementation
set usage(SetCandidatesParametersCandidatesUsage? v) {
  _wrapped.usage = v?.toJS;
}