microseconds method
Print amount
microseconds for the corresponding locale. The unit is
abbreviated if abbreviated
is set to true.
Implementation
@override
String microseconds(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 'ميكرو ثواني';
}
}