matchedSubstrings property
      
      List<PredictionSubstring?> ?
      get
      matchedSubstrings
      
    
    
    
Implementation
List<PredictionSubstring?>? get matchedSubstrings =>
    getProperty(this, 'matched_substrings')?.cast<PredictionSubstring?>();
      
      set
      matchedSubstrings
      (List<PredictionSubstring?> ? value) 
      
    
    
    
Implementation
set matchedSubstrings(List<PredictionSubstring?>? value) {
  setProperty(this, 'matched_substrings', value);
}