styleText property
      
      String?
      get
      styleText
      
    
    
    
Implementation
String? get styleText {
  var attr = getAttribute('style');
  if (attr == null) return null;
  return attr.value;
}
      
      set
      styleText
      (String? value) 
      
    
    
    
Implementation
set styleText(String? value) => setAttribute('style', value);