GoogleCloudAiplatformV1ModelEvaluationSliceSliceSliceSpecValue.fromJson constructor

GoogleCloudAiplatformV1ModelEvaluationSliceSliceSliceSpecValue.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1ModelEvaluationSliceSliceSliceSpecValue.fromJson(
    core.Map json_)
    : this(
        floatValue: json_.containsKey('floatValue')
            ? (json_['floatValue'] as core.num).toDouble()
            : null,
        stringValue: json_.containsKey('stringValue')
            ? json_['stringValue'] as core.String
            : null,
      );