run method

FutureOr<void> run(
  1. LoadingContext context
)

Loads the asset specified by context if filtering passes.

Implementation

FutureOr<void> run(LoadingContext context) {
  if (accepts(context)) {
    return load(context);
  }
}