tightConstrained method
Implementation
ConstrainedBox tightConstrained(
Size size, {
Key? key,
}) =>
ConstrainedBox(
key: key,
constraints: BoxConstraints.tight(size),
child: this,
);
ConstrainedBox tightConstrained(
Size size, {
Key? key,
}) =>
ConstrainedBox(
key: key,
constraints: BoxConstraints.tight(size),
child: this,
);