countArticles method
No description provided for @countArticles.
In en, this message translates to: '{count} {count, plural, one{article} other{articles}}'
Implementation
@override
String countArticles(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '게시물',
one: '게시물',
);
return '<strong>$count</strong>개의 $_temp0';
}