GoogleCloudDialogflowV2IntentMessageText.fromJson constructor

GoogleCloudDialogflowV2IntentMessageText.fromJson(
  1. Map json_
)

Implementation

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