On this page
Optional
decorator
A constructor parameter decorator that marks a dependency as optional.
See also
Description
The DI framework provides null if the dependency is not found. For example, the following code allows the possibility of a null result:
class Engine {}
@Injectable()
class Car {
constructor(@Optional() public engine: Engine) {}
}
const injector = ReflectiveInjector.resolveAndCreate([Car]);
expect(injector.get(Car).engine).toBeNull();
Options
© 2010–2019 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v6.angular.io/api/core/Optional