copyWithEnglishChapterNames method
KuralState
copyWithEnglishChapterNames(
{ - required List<String> englishChapterNamesList,
- required bool isAllEnglishChaptersLoaded,
- 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,
);
}