looseConstrained method

ConstrainedBox looseConstrained(
  1. Size size, {
  2. Key? key,
})

Implementation

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