SizedBox constructor

const SizedBox({
  1. Key? key,
  2. Unit? width,
  3. Unit? height,
  4. Component? child,
})

Implementation

const SizedBox({super.key, this.width, this.height, this.child});