DefaultIntegerHyperParameterRange.fromJson constructor

DefaultIntegerHyperParameterRange.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}