onDeleted method
Calls block
whenever the this
file is deleted.
Returns StreamSubscription which allows to cancel the listener.
Implementation
StreamSubscription onDeleted(void block()) {
return watch(events: FileSystemEvent.delete).listen((event) => block());
}