p.location-badge.
exported from angular2/di
defined in angular2/src/di/annotations_impl.ts (line 54)
:markdown
A parameter annotation that marks a dependency as optional. Injector provides `null` if
the dependency is not found.
```
class AComponent {
constructor(@Optional() aService:MyService) {
this.aService = aService;
}
}
```