class ReportRequestBody { final String category; final List tests; ReportRequestBody({required this.category, required this.tests}); Map toJson() { return { 'category': category, 'tests': tests, }; } }