HPOObjective.fromJson constructor
Implementation
factory HPOObjective.fromJson(Map<String, dynamic> json) {
return HPOObjective(
metricName: json['metricName'] as String?,
metricRegex: json['metricRegex'] as String?,
type: json['type'] as String?,
);
}