SizedBox constructor

const SizedBox({
  1. int? width,
  2. int? height,
  3. Widget? child,
})

Creates a sized box to enforce width and height.

Implementation

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