get static method

Future<File> get(
  1. String fileName
)

Implementation

static Future<File> get(String fileName) async {
  final path = await localPath;
  return File('$path/$fileName');
}