GoogleCloudDialogflowV2VoiceSelectionParams.fromJson constructor

GoogleCloudDialogflowV2VoiceSelectionParams.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2VoiceSelectionParams.fromJson(core.Map json_)
    : this(
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        ssmlGender: json_.containsKey('ssmlGender')
            ? json_['ssmlGender'] as core.String
            : null,
      );