resolveConfigFile method

Future<File> resolveConfigFile()

Returns a Future that resolves to a File object representing the configuration file.

The method uses AppDirService to find the application directory and then locates the configuration file within it.

Example:

var configFile = await myConfigService.configFile;

Implementation

Future<File> resolveConfigFile() async {
  var dir = await appDirService.resolveApplicationDirectory();

  return File("${dir.path}/$fileName");
}