dgis_stops method
No description provided for @dgis_stops.
In en, this message translates to: '{count, plural, =0{No stops} =1{1 stop} other{{count} stops}}'
Implementation
@override
String dgis_stops(num count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count остановок',
many: '$count остановок',
few: '$count остановки',
one: '1 остановка',
);
return '$_temp0';
}