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