ngSwitchWhen property

  1. @Input()
void ngSwitchWhen=(dynamic value)

Implementation

@Input()
set ngSwitchWhen(dynamic value) {
  if (identical(value, _value)) return;
  _switch._onWhenValueChanged(_value, value, _view);
  _value = value;
}