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