GoogleCloudAiplatformV1Value.fromJson constructor

GoogleCloudAiplatformV1Value.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1Value.fromJson(core.Map json_)
  : this(
      doubleValue: (json_['doubleValue'] as core.num?)?.toDouble(),
      intValue: json_['intValue'] as core.String?,
      stringValue: json_['stringValue'] as core.String?,
    );