GoogleCloudDialogflowCxV3IntentCoverageIntent.fromJson constructor

GoogleCloudDialogflowCxV3IntentCoverageIntent.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3IntentCoverageIntent.fromJson(core.Map json_)
    : this(
        covered: json_.containsKey('covered')
            ? json_['covered'] as core.bool
            : null,
        intent: json_.containsKey('intent')
            ? json_['intent'] as core.String
            : null,
      );