customSpace function

SizedBox customSpace({
  1. double? w,
  2. double? h,
})

Implementation

SizedBox customSpace({double? w, double? h}) => SizedBox(
  width: w ?? 0,
  height: h ?? 0,
);