intrinsicSize property

Size intrinsicSize

Implementation

Size get intrinsicSize => _intrinsicSize;
void intrinsicSize=(Size value)

Implementation

set intrinsicSize(Size value) {
  if (_intrinsicSize == value) {
    return;
  }
  _intrinsicSize = value;
  if (parent != null) {
    markNeedsLayoutForSizedByParentChange();
  }
}