isLocked property

bool isLocked

The lock state of the Annotation.

Implementation

bool get isLocked => _isLocked;
void isLocked=(bool newValue)

Implementation

set isLocked(bool newValue) {
  if (_isLocked != newValue) {
    final bool oldValue = _isLocked;
    _isLocked = newValue;
    _onPropertyChanged?.call(this, 'isLocked', oldValue, newValue);
    _notify();
  }
}