appFile static method

File appFile({
  1. String? file,
  2. String? ext,
  3. String? dir,
})

for app

Implementation

static File appFile({String? file, String? ext, String? dir}) {
  return makeFile(dirSupport, file: file, ext: ext, dir: dir);
}