subscribeControl method
Implementation
@protected
@mustCallSuper
void subscribeControl() {
_statusChangesSubscription = control.statusChanged.listen(
_onControlStatusChanged,
);
_touchChangesSubscription = control.touchChanges.listen(
_onControlTouchChanged,
);
_subscribeValueAccessor();
}