copyWithEnglishChapterNames method

KuralState copyWithEnglishChapterNames({
  1. required List<String> englishChapterNamesList,
  2. required bool isAllEnglishChaptersLoaded,
  3. required String englishChapterNamesErrorMessage,
})

Implementation

KuralState copyWithEnglishChapterNames({
  required List<String> englishChapterNamesList,
  required bool isAllEnglishChaptersLoaded,
  required String englishChapterNamesErrorMessage,
}) {
  return KuralState.englishChapterNames(
    englishChapterNamesList: englishChapterNamesList,
    isAllEnglishChaptersLoaded: isAllEnglishChaptersLoaded,
    englishChapterNamesErrorMessage: englishChapterNamesErrorMessage,
  );
}