DefaultContinuousHyperParameterRange.fromJson constructor
Implementation
factory DefaultContinuousHyperParameterRange.fromJson(
Map<String, dynamic> json) {
return DefaultContinuousHyperParameterRange(
isTunable: json['isTunable'] as bool?,
maxValue: json['maxValue'] as double?,
minValue: json['minValue'] as double?,
name: json['name'] as String?,
);
}