GoogleCloudDialogflowV2TextInput.fromJson constructor

GoogleCloudDialogflowV2TextInput.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2TextInput.fromJson(core.Map json_)
    : this(
        languageCode: json_.containsKey('languageCode')
            ? json_['languageCode'] as core.String
            : null,
        text: json_.containsKey('text') ? json_['text'] as core.String : null,
      );