onExists method

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

Implementation

@override
Future<bool> onExists(String path) => FileSystemEntity.type(getRealPath(path))
    .then((type) => type != FileSystemEntityType.notFound);