SizedBox constructor Null safety

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

Implementation

const factory SizedBox(
    {final Key? key,
    final double? width,
    final double? height,
    final Widget? child}) = _$SizedBox;