fileNotAccepted method

String fileNotAccepted(
  1. String name
)

"{name}" is not an accepted type

Implementation

String fileNotAccepted(String name) {
  return Intl.message(
    '"$name" is not an accepted type',
    name: 'fileNotAccepted',
    desc: '',
    args: [name],
  );
}