getDefaultVoice property
Future
get
getDefaultVoice
Future which invokes the platform specific method for getDefaultVoice
Returns a Map containing a voice name and locale
***Android supported only ***
Implementation
Future<dynamic> get getDefaultVoice async {
final voice = await _channel.invokeMethod('getDefaultVoice');
return voice;
}