dgis_stops method

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

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';
}