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