GoogleCloudAiplatformV1IndexStats.fromJson constructor

GoogleCloudAiplatformV1IndexStats.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1IndexStats.fromJson(core.Map json_)
    : this(
        shardsCount: json_.containsKey('shardsCount')
            ? json_['shardsCount'] as core.int
            : null,
        vectorsCount: json_.containsKey('vectorsCount')
            ? json_['vectorsCount'] as core.String
            : null,
      );