GoogleCloudDialogflowCxV3ResponseMessageMixedAudio.fromJson constructor

GoogleCloudDialogflowCxV3ResponseMessageMixedAudio.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3ResponseMessageMixedAudio.fromJson(core.Map json_)
    : this(
        segments: json_.containsKey('segments')
            ? (json_['segments'] as core.List)
                .map((value) =>
                    GoogleCloudDialogflowCxV3ResponseMessageMixedAudioSegment
                        .fromJson(
                            value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );