GoogleCloudAiplatformV1StudySpecParameterSpecIntegerValueSpec.fromJson constructor

GoogleCloudAiplatformV1StudySpecParameterSpecIntegerValueSpec.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1StudySpecParameterSpecIntegerValueSpec.fromJson(
    core.Map json_)
    : this(
        defaultValue: json_.containsKey('defaultValue')
            ? json_['defaultValue'] as core.String
            : null,
        maxValue: json_.containsKey('maxValue')
            ? json_['maxValue'] as core.String
            : null,
        minValue: json_.containsKey('minValue')
            ? json_['minValue'] as core.String
            : null,
      );