GoogleCloudAiplatformV1Segment.fromJson constructor

GoogleCloudAiplatformV1Segment.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1Segment.fromJson(core.Map json_)
    : this(
        endIndex: json_.containsKey('endIndex')
            ? json_['endIndex'] as core.int
            : null,
        partIndex: json_.containsKey('partIndex')
            ? json_['partIndex'] as core.int
            : null,
        startIndex: json_.containsKey('startIndex')
            ? json_['startIndex'] as core.int
            : null,
      );