requestedSize property
The size this render box should attempt to be.
Implementation
Size get requestedSize => _requestedSize;
Implementation
set requestedSize(Size value) {
assert(value != null);
if (_requestedSize == value)
return;
_requestedSize = value;
markNeedsLayout();
}