ariaDisabled property
      
      String?
      get
      ariaDisabled
      
    
    
The ariaDisabled property of the Element interface reflects the
value of the
aria-disabled
attribute, which indicates that the element is perceivable but disabled,
so it is not editable or otherwise operable.
Note: Where possible, use the
inputelement withtype="button"or thebuttonelement — because those elements have built in semantics and do not require ARIA attributes.
Implementation
external String? get ariaDisabled;
      
      set
      ariaDisabled
      (String? value) 
      
    
    
    
Implementation
external set ariaDisabled(String? value);