GoogleCloudVideointelligenceV1SpeechContext.fromJson constructor

GoogleCloudVideointelligenceV1SpeechContext.fromJson(
  1. Map json_
)

Implementation

GoogleCloudVideointelligenceV1SpeechContext.fromJson(core.Map json_)
    : this(
        phrases: json_.containsKey('phrases')
            ? (json_['phrases'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );