resolveApplicationDirectory method

  1. @override
Future<Directory> resolveApplicationDirectory()
override

Returns a Future that resolves to a Directory object representing the directory where the application should store its files.

Implementation

@override
Future<Directory> resolveApplicationDirectory() async {
  // Fetch the original application directory from the wrapped service
  var dir = await appDirService.resolveApplicationDirectory();

  // Create a '/debug' subdirectory inside the original directory
  return Directory("${dir.path}/debug").create(recursive: true);
}