supportsTTS property
      
      bool
      get
      supportsTTS
      
    
    
Check if the current model supports TTS
Implementation
bool get supportsTTS {
  final model = _config.model;
  return model.contains('tts') || model.contains('gemini-2.5');
}