Returns new box constraints that remove the minimum width and height requirements.
Source
BoxConstraints loosen() {
assert(debugAssertIsValid());
return new BoxConstraints(
minWidth: 0.0,
maxWidth: maxWidth,
minHeight: 0.0,
maxHeight: maxHeight
);
}