Dart Documentationangular.directiveNgSwitchDefaultDirective

NgSwitchDefaultDirective class

@NgDirective(
   children: NgAnnotation.TRANSCLUDE_CHILDREN,
   selector: '[ng-switch-default]'
)
class NgSwitchDefaultDirective {

 NgSwitchDefaultDirective(NgSwitchDirective ngSwitch, BlockHole hole,
                       BoundBlockFactory blockFactory, Scope scope) {
   ngSwitch.addCase('?', hole, blockFactory);
 }
}

Constructors

new NgSwitchDefaultDirective(NgSwitchDirective ngSwitch, BlockHole hole, BoundBlockFactory blockFactory, Scope scope) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
NgSwitchDefaultDirective(NgSwitchDirective ngSwitch, BlockHole hole,
                     BoundBlockFactory blockFactory, Scope scope) {
 ngSwitch.addCase('?', hole, blockFactory);
}