text property
      
      String?
      get
      text
      
    
    
    
Implementation
String? get text => _text;
      
      set
      text
      (String? newValue) 
      
    
    
    
Implementation
set text(String? newValue) {
  _text = newValue;
  notifyListeners();
}