curriculumAggregatedSessions method

  1. @override
String curriculumAggregatedSessions(
  1. 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: 'Aggregato da $count sessioni',
    one: 'Aggregato da 1 sessione',
  );
  return '$_temp0';
}