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