dgis_stations method
No description provided for @dgis_stations.
In en, this message translates to: '{count, plural, =0{No stations} =1{1 station} other{{count} stations}} '
Implementation
@override
String dgis_stations(num count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count станций',
many: '$count станций',
few: '$countстанции',
one: '1 станция',
);
return '$_temp0';
}