matchMinSourceWidth property

bool get matchMinSourceWidth

If true, the popup will set a min-width to the width of source.

Implementation

bool get matchMinSourceWidth =>
    _backingMap[#matchMinSourceWidth] as bool? ?? false;
set matchMinSourceWidth (bool? matchMinSourceWidth)

Implementation

set matchMinSourceWidth(bool? matchMinSourceWidth) {
  _backingMap[#matchMinSourceWidth] = matchMinSourceWidth;
}