arabicNumeralsEastToWest top-level constant

Map<String, String> const arabicNumeralsEastToWest

A map where the keys are the Eastern Arabic Numerals in unicodes and values of Western Arabic Numerals

Implementation

const arabicNumeralsEastToWest = <String, String>{
  '\u0660': '0', // ٠ <-> 0
  '\u0661': '1', // ١ <-> 1
  '\u0662': '2', // ٢ <-> 2
  '\u0663': '3', // ٣ <-> 3
  '\u0664': '4', // ٤ <-> 4
  '\u0665': '5', // ٥ <-> 5
  '\u0666': '6', // ٦ <-> 6
  '\u0667': '7', // ٧ <-> 7
  '\u0668': '8', // ٨ <-> 8
  '\u0669': '9', // ٩ <-> 9
};