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