Rename benchmark_service directory to benchmark

This commit is contained in:
hunteraraujo
2023-09-19 22:16:58 -07:00
parent 525571c32e
commit 99035103e0
6 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
class BenchmarkStepRequestBody {
final String? input;
BenchmarkStepRequestBody({required this.input});
Map<String, dynamic> toJson() {
if (input == null) {
return {};
}
return {'input': input};
}
}