second method

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

Print amount second for the corresponding locale. The unit is abbreviated if abbreviated is set to true.

Implementation

@override
String second(int amount, [bool abbreviated = true]) {
  if (abbreviated) {
    return 's';
  }

  switch (CzechDurationLocale.getPluralization(amount)) {
    case CzechDurationLocalePluralization.one:
      return 'sekunda';
    case CzechDurationLocalePluralization.few:
      return 'sekundy';
    case CzechDurationLocalePluralization.many:
    default:
      return 'sekund';
  }
}