tightConstrainedFor method
Implementation
ConstrainedBox tightConstrainedFor({
Key? key,
double? w,
double? h,
}) =>
ConstrainedBox(
key: key,
constraints: BoxConstraints.tightFor(width: w, height: h),
child: this,
);