curriculumAggregatedSessions method
- int count
override
No description provided for @curriculumAggregatedSessions.
In en, this message translates to: '{count, plural, =1{Aggregated from 1 session} other{Aggregated from {count} sessions}}'
Implementation
@override
String curriculumAggregatedSessions(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: 'Aggregated from $count sessions',
one: 'Aggregated from 1 session',
);
return '$_temp0';
}