GoogleCloudMlV1AddTrialMeasurementRequest.fromJson constructor

GoogleCloudMlV1AddTrialMeasurementRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudMlV1AddTrialMeasurementRequest.fromJson(core.Map json_)
    : this(
        measurement: json_.containsKey('measurement')
            ? GoogleCloudMlV1Measurement.fromJson(
                json_['measurement'] as core.Map<core.String, core.dynamic>)
            : null,
      );