isArabicNum function
Returns true if input is a positive integer in Latin digits with no leading zero.
Implementation
bool isArabicNum(String input) {
//ToDo if it's starts with 0 , i.e 032158 it's not a valid number
return _arabicNumRegExp.hasMatch(input);
}