setSize method

SizedBox setSize(
  1. Size size, {
  2. Key? key,
})

Implementation

SizedBox setSize(Size size, {Key? key}) =>
    SizedBox(key: key, height: size.height, width: size.width, child: this);