loose static method
Create loose constraints with responsive values
Implementation
static BoxConstraints loose({
required double width,
required double height,
}) {
return BoxConstraints.loose(
Size(width.w, height.h),
);
}
Create loose constraints with responsive values
static BoxConstraints loose({
required double width,
required double height,
}) {
return BoxConstraints.loose(
Size(width.w, height.h),
);
}