movable property

bool get movable

Gets or sets whether the user may move this part. The initial value is true.

Implementation

_i2.bool get movable => _i4.getProperty(
      this,
      'movable',
    );
set movable (bool value)

Implementation

set movable(_i2.bool value) {
  _i4.setProperty(
    this,
    'movable',
    value,
  );
}