GoogleCloudMlV1TrialParameter.fromJson constructor

GoogleCloudMlV1TrialParameter.fromJson(
  1. Map json_
)

Implementation

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