ngAfterViewInit method
Implementation
@override
void ngAfterViewInit() {
if (_cd?.control != null) {
_disposer.addStreamSubscription(_cd!.control!.valueChanges.listen((value) {
_changeDetector.markForCheck();
}));
_disposer
.addStreamSubscription(_cd!.control!.statusChanges.listen((status) {
_changeDetector.markForCheck();
updateBottomPanelState();
}));
}
}