tight static method

BoxConstraints tight(
  1. Size size
)

Implementation

static BoxConstraints tight(Size size) {
  return BoxConstraints(minWidth: size.width, minHeight: size.height);
}