switchFontType method

Future<void> switchFontType({
  1. required int fontIndex,
})

لتبديل نوع الخط مع تحميله إذا لم يكن محملاً من قبل هذه الدالة تلقائيًا ستقوم بتحميل الخط إذا كان غير متوفر ثم تعيينه

To switch font type with downloading if not already downloaded This function will automatically download the font if not available then set it

Implementation

Future<void> switchFontType({required int fontIndex}) async {
  await quranCtrl.switchFontType(fontIndex: fontIndex);
}