sizedBox function
dynamic
sizedBox({
- dynamic height,
- dynamic width,
Implementation
sizedBox({height, width}) {
return SizedBox(
height: height,
width: width,
);
}