16 lines
307 B
Dart
16 lines
307 B
Dart
|
import '../../../../common/routing/routes.dart';
|
||
|
|
||
|
class Benchmark {
|
||
|
final String title;
|
||
|
final String desc;
|
||
|
final String buttonText;
|
||
|
final RoutesBenchmark route;
|
||
|
|
||
|
Benchmark({
|
||
|
required this.title,
|
||
|
required this.desc,
|
||
|
this.buttonText = 'Go to benchmark',
|
||
|
required this.route,
|
||
|
});
|
||
|
}
|