copyWithEnglishChapterNameKurals method
KuralState
copyWithEnglishChapterNameKurals(
{ - required List<Kural> englishChapterNameKuralsList,
- required bool isAllEnglishChaptersKuralsLoaded,
- required String englishChapterNameKuralsErrorMessage,
})
Implementation
KuralState copyWithEnglishChapterNameKurals({
required List<Kural> englishChapterNameKuralsList,
required bool isAllEnglishChaptersKuralsLoaded,
required String englishChapterNameKuralsErrorMessage,
}) {
return KuralState.englishChapterNameKurals(
englishChapterNameKuralsList: englishChapterNameKuralsList,
isAllEnglishChaptersKuralsLoaded: isAllEnglishChaptersKuralsLoaded,
englishChapterNameKuralsErrorMessage:
englishChapterNameKuralsErrorMessage,
);
}