text property
      
      String
      get
      text
      
    
    
    
Implementation
String get text => this == null ? '' : this!.text;
      
      set
      text
      (String newText) 
      
    
    
    
Implementation
set text(String newText) => this?.text = newText;