getAvailableVoices method
Get available voices for Google TTS
Returns a list of supported voice configurations
Implementation
@override
Future<List<GoogleVoiceInfo>> getAvailableVoices() async {
  // Return the predefined voices since Google doesn't provide a voices API
  return GoogleTTSCapability.getPredefinedVoices();
}