setLocked method
Implementation
void setLocked(bool locked) {
if (_locked == locked) {
return;
}
_locked = locked;
_notifyChanged();
}
void setLocked(bool locked) {
if (_locked == locked) {
return;
}
_locked = locked;
_notifyChanged();
}