fileCount method

String fileCount(
  1. num count
)

{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],
  );
}