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