millisecond method

  1. @override
String millisecond(
  1. int amount, [
  2. bool abbreviated = true
])
override

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 'ملّي ثواني';
  }
}