SizedBoxResponsive.expand constructor
Creates a box that will become as large as its parent allows.
Implementation
const SizedBoxResponsive.expand({Key? key, Widget? child})
: super(
key: key,
child: child,
width: double.infinity,
height: double.infinity,
);