currentPart property

Part? get currentPart

Gets the Part found at the mouse point. This is normally set by a call to #standardMouseSelect.

Implementation

_i3.Part? get currentPart => _i4.getProperty(
      this,
      'currentPart',
    );
set currentPart (Part? value)

Implementation

set currentPart(_i3.Part? value) {
  _i4.setProperty(
    this,
    'currentPart',
    value ?? _i5.undefined,
  );
}