intrinsicWidth property

  1. @override
double intrinsicWidth
override

Implementation

@override
double get intrinsicWidth {
  return _intrinsicWidth;
}
void intrinsicWidth=(double value)

Implementation

set intrinsicWidth(double value) {
  if (_intrinsicWidth == value) return;
  _intrinsicWidth = value;
  _markSelfAndParentNeedsLayout();
}