copyWithEnglishChapterNameKurals method

KuralState copyWithEnglishChapterNameKurals({
  1. required List<Kural> englishChapterNameKuralsList,
  2. required bool isAllEnglishChaptersKuralsLoaded,
  3. 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,
  );
}