dgis_transfers method

  1. @override
String dgis_transfers(
  1. num count
)
override

No description provided for @dgis_transfers.

In en, this message translates to: '{count, plural, =0{No transfers} =1{1 transfer} other{{count} transfers}}'

Implementation

@override
String dgis_transfers(num count) {
  String _temp0 = intl.Intl.pluralLogic(
    count,
    locale: localeName,
    other: '$count пересадок',
    many: '$count пересадок',
    few: '$count пересадки',
    one: '1 пересадка',
  );
  return '$_temp0';
}