ChapterResponseModel constructor

const ChapterResponseModel({
  1. required String chapterId,
  2. required String name,
  3. dynamic lastConversionDateUnix,
  4. dynamic conversionProgress,
  5. required bool canBeDownloaded,
  6. required ChapterResponseModelState state,
  7. dynamic statistics,
  8. dynamic lastConversionError,
})

Implementation

const ChapterResponseModel({
  required this.chapterId,
  required this.name,
  this.lastConversionDateUnix,
  this.conversionProgress,
  required this.canBeDownloaded,
  required this.state,
  this.statistics,
  this.lastConversionError,
});