ToolNameMatchMetricValue.fromJson constructor
ToolNameMatchMetricValue.fromJson(
- Object? j
Implementation
factory ToolNameMatchMetricValue.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return ToolNameMatchMetricValue(
score: switch (json['score']) {
null => null,
Object $1 => decodeDouble($1),
},
);
}