millisecond method
Print amount millisecond for the corresponding locale. The unit is abbreviated
if abbreviated is set to true.
Implementation
@override
String millisecond(int amount, [bool abbreviated = true]) {
  if (abbreviated) {
    return 'م ث';
  } else {
    if (amount == 1) {
      return 'ملّي ثانية';
    } else if (amount == 2) {
      return 'ملّي ثانيتين';
    } else if (amount > 2 && amount < 11) {
      return 'ملّي ثواني';
    } else if (amount > 10) {
      return 'ملّي ثانية';
    }
    return 'ملّي ثواني';
  }
}