SynthesizeSpeechResponse.fromJson constructor

SynthesizeSpeechResponse.fromJson(
  1. Map json_
)

Implementation

SynthesizeSpeechResponse.fromJson(core.Map json_)
    : this(
        audioContent: json_.containsKey('audioContent')
            ? json_['audioContent'] as core.String
            : null,
      );