accepts method
- LoadingContext context
Whether every filter accepts the asset specified by context.
Implementation
bool accepts(LoadingContext context) {
return _filters.every((filter) => filter(context));
}
Whether every filter accepts the asset specified by context.
bool accepts(LoadingContext context) {
return _filters.every((filter) => filter(context));
}