GoogleVoiceInfo.fromJson constructor
Implementation
factory GoogleVoiceInfo.fromJson(Map<String, dynamic> json) =>
GoogleVoiceInfo(
name: json['name'] as String,
description: json['description'] as String,
category: json['category'] as String?,
supportsMultiSpeaker: json['supports_multi_speaker'] as bool? ?? true,
);