SizedBox constructor

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

Creates a fixed size box.

Implementation

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