dgis_transfers method
No description provided for @dgis_transfers.
In en, this message translates to: '{count, plural, =0{No transfers} =1{1 transfer} other{{count} transfers}}'
Implementation
@override
String dgis_transfers(num count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count transfers',
one: '1 transfer',
zero: 'No transfers',
);
return '$_temp0';
}