SizedBox constructor

const SizedBox({
  1. Key? key,
  2. int? sWidth,
  3. int? sHeight,
  4. Widget? child,
})

Implementation

const SizedBox({super.key, this.sWidth, this.sHeight, super.child});