getSupportFile method

  1. @override
File? getSupportFile({
  1. required String pathSuffix,
})
override

Implementation

@override
File? getSupportFile({required String pathSuffix}) {
  final Directory dir = _filesDirectory;
  final file = File(dir.path + '/' + pathSuffix);
  if (file.existsSync()) {
    return file;
  }
  return null;
}