setArabicWhenDeviceLangaugeIsArabic static method

void setArabicWhenDeviceLangaugeIsArabic(
  1. BuildContext context
)

some of arabic peaple make there phone langauge is "arabic" by default

Implementation

static void setArabicWhenDeviceLangaugeIsArabic(BuildContext context) {

  if( isDeviceLangaugeArabic(context) ) {
    setArabic(context);
    return ;
  }
}