GoogleCloudAiplatformV1ListAnnotationsResponse.fromJson constructor

GoogleCloudAiplatformV1ListAnnotationsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1ListAnnotationsResponse.fromJson(core.Map json_)
    : this(
        annotations: json_.containsKey('annotations')
            ? (json_['annotations'] as core.List)
                .map((value) => GoogleCloudAiplatformV1Annotation.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
      );