expand method

Widget expand({
  1. Key? key,
})

Implementation

Widget expand({Key? key}) {
  return ConstrainedBox(
    constraints: BoxConstraints.expand(),
    key: key,
  );
}