dependsOn property

List<DependencyDesign> dependsOn
getter/setter pairinherited

Other dependencies that this pod depends on.

Describes a dependency required by a component or pod.

This class is used to specify the name of the dependency, an optional qualifier (to disambiguate multiple beans of the same type), and whether the dependency is required.

Example

final descriptor = DependencyDesign(
  "databaseService",
);

print(descriptor.name); // "databaseService"

Implementation

List<DependencyDesign> dependsOn;