title property
      
      String?
      get
      title
      
    
    
Match group titles against a pattern.
Implementation
String? get title => _wrapped.title;
      
      set
      title
      (String? v) 
      
    
    
    
Implementation
set title(String? v) {
  _wrapped.title = v;
}