run method
- LoadingContext context
Loads the asset specified by context if filtering passes.
Implementation
FutureOr<void> run(LoadingContext context) {
if (accepts(context)) {
return load(context);
}
}
Loads the asset specified by context if filtering passes.
FutureOr<void> run(LoadingContext context) {
if (accepts(context)) {
return load(context);
}
}