exists method

  1. @override
bool exists(
  1. String path,
  2. {EntityType type = EntityType.file}
)
override

Implementation

@override
bool exists(
  String path, {
  EntityType type = EntityType.file,
}) =>
    open(path, type: type) != null ? true : false;