dependencies property
Define other loaders that the Loader
depends on.
The dependent loader will load data before the current Loader
, and the fallback behavior will also be after the current Loader
.
Implementation
@override
get dependencies => switch (includeSystemEnvironment) {
true => const {EnvironmentLoader()},
_ => super.dependencies,
};