watch method
Creates an IChangeToken for the specified filter.
Implementation
@override
IChangeToken watch(String filter) {
// Composite change tokens: combine all watches.
var tokens = fileProviders.map((fp) => fp.watch(filter)).toList();
return CompositeChangeToken(tokens);
}