| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : class ChapterInfo { 2 0 : ChapterInfo( 3 : {required this.imagePath, 4 : required this.name, 5 : required this.totalExercises, 6 : required this.clearedExercises, 7 : required this.chapterNumber}); 8 : 9 : final String name; 10 : final int chapterNumber; 11 : final int totalExercises; 12 : final int clearedExercises; 13 : final String imagePath; 14 : } |
| Generated by: LCOV version 2.3-1 |