activeModel property

ActiveItemModel? get activeModel

Implementation

ActiveItemModel? get activeModel => _activeModel;
  1. @Input()
set activeModel (ActiveItemModel? v)

Implementation

@Input()
set activeModel(ActiveItemModel? v) {
  _activeModel = v;
  _activeModelChange?.cancel();
  _activeModelChange = v?.modelChanged.listen((_) {
    _changeDetector.markForCheck();
  });
}