ChapterInfo constructor Null safety

ChapterInfo(
  1. {required String chapter,
  2. required String id,
  3. required List<String> others,
  4. required int count}
)

Implementation

ChapterInfo(
    {required this.chapter,
    required this.id,
    required this.others,
    required this.count});