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 'мс';
  }
  return _pickNoun(amount, 'мілісекунда', 'мілісекунди', 'мілісекунд');
}