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