GoogleCloudAiplatformV1IndexDatapointRestriction.fromJson constructor

GoogleCloudAiplatformV1IndexDatapointRestriction.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1IndexDatapointRestriction.fromJson(core.Map json_)
  : this(
      allowList:
          (json_['allowList'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      denyList:
          (json_['denyList'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      namespace: json_['namespace'] as core.String?,
    );