accepts method

bool accepts(
  1. LoadingContext context
)

Whether every filter accepts the asset specified by context.

Implementation

bool accepts(LoadingContext context) {
  return _filters.every((filter) => filter(context));
}