minIntrinsicWidth property

double get minIntrinsicWidth

The width at which decreasing the width of the text would prevent it from painting itself completely within its bounds.

Valid only after layout has been called.

Implementation

double get minIntrinsicWidth {
  assert(_debugAssertTextLayoutIsValid);
  return _layoutCache!.layout.minIntrinsicLineExtent;
}