class BenchmarkStepRequestBody { final String? input; BenchmarkStepRequestBody({required this.input}); Map toJson() { if (input == null) { return {}; } return {'input': input}; } }