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 stations',
one: '1 station',
zero: 'No stations',
);
return '$_temp0 ';
}