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