fileCount method
{count, plural, =1{1 file} other{{count} files}}
Implementation
String fileCount(num count) {
return Intl.plural(
count,
one: '1 file',
other: '$count files',
name: 'fileCount',
desc: '',
args: [count],
);
}