fseIdentical method
Asynchronously returns true
if path1
and path2
are paths to the
same file system object.
When this override is installed, this function overrides the behavior of
FileSystemEntity.identical
.
Implementation
@override
Future<bool> fseIdentical(String path1, String path2) {
return Future.value(fseIdenticalSync(path1, path2));
}