onDisabledChanged method
This function is called when the control status changes to or from "DISABLED".
Depending on the value, it will enable or disable the appropriate DOM element.
Implementation
@override
void onDisabledChanged(bool isDisabled) {
disabled = isDisabled;
_changeDetector.markForCheck();
}