isSameEntry method
Compares two handles to see if the associated entries (either a file or directory) match.
Implementation
Future<bool> isSameEntry(FileSystemHandle other) {
return promiseToFuture(callMethod(this, "isSameEntry", [other]));
}
Compares two handles to see if the associated entries (either a file or directory) match.
Future<bool> isSameEntry(FileSystemHandle other) {
return promiseToFuture(callMethod(this, "isSameEntry", [other]));
}