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