loose static method

BoxConstraints loose(
  1. Size size
)

Implementation

static BoxConstraints loose(Size size) {
  return BoxConstraints(maxWidth: size.width, maxHeight: size.height);
}