GoogleCloudRetailV2IntentClassificationConfigInlineSource.fromJson constructor

GoogleCloudRetailV2IntentClassificationConfigInlineSource.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRetailV2IntentClassificationConfigInlineSource.fromJson(
  core.Map json_,
) : this(
      inlineForceIntents: (json_['inlineForceIntents'] as core.List?)
          ?.map(
            (value) =>
                GoogleCloudRetailV2IntentClassificationConfigInlineForceIntent.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
    );