clear method

Future<void> clear()

Implementation

Future<void> clear() async {
  for (var path in files()) {
    await File(path).delete();
  }
}