exists method

  1. @override
bool exists(
  1. String path
)
override

Public method or function.

Implementation

@override
/// Public method or function.
bool exists(String path) =>
    File(path).existsSync() || Directory(path).existsSync();