copyWithEnglishSectionKurals method
KuralState
copyWithEnglishSectionKurals(
{ - required List<Kural> englishSectionNameKuralsList,
- required bool isAllEnglishSectionKuralsLoaded,
- required String englishSectionNameKuralsErrorMessage,
})
Implementation
KuralState copyWithEnglishSectionKurals({
required List<Kural> englishSectionNameKuralsList,
required bool isAllEnglishSectionKuralsLoaded,
required String englishSectionNameKuralsErrorMessage,
}) {
return KuralState.englishSectionKurals(
englishSectionNameKuralsList: englishSectionNameKuralsList,
isAllEnglishSectionKuralsLoaded: isAllEnglishSectionKuralsLoaded,
englishSectionNameKuralsErrorMessage:
englishSectionNameKuralsErrorMessage,
);
}