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