existsFile method

  1. @override
Future<bool> existsFile(
  1. String path
)

Checks whether the file system entity with this path exists.

Implementation

@override
Future<bool> existsFile(String path) {
  final result = ['CHANGELOG.md', 'pubspec.yaml'].contains(path);

  _print("existsFile $path -> $result");
  return Future.value(result);
}