GoogleCloudDialogflowCxV3ResourceName.fromJson constructor

GoogleCloudDialogflowCxV3ResourceName.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3ResourceName.fromJson(core.Map json_)
    : this(
        displayName: json_.containsKey('displayName')
            ? json_['displayName'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
      );