disabled property
Implementation
bool get disabled => _disabled;
Whether or not this input is disabled (readonly input.)
Implementation
@Input()
set disabled(bool? disabled) {
_disabled = disabled ?? false;
_changeDetector.markForCheck();
}
bool get disabled => _disabled;
Whether or not this input is disabled (readonly input.)
@Input()
set disabled(bool? disabled) {
_disabled = disabled ?? false;
_changeDetector.markForCheck();
}