space function

Widget space({
  1. double? width,
  2. double? height,
  3. EdgeInsets? margin,
})

Implementation

Widget space({double? width, double? height, EdgeInsets? margin}) {
  if (margin == null) return SizedBox(width: width, height: height);
  return Container(height: height, width: width, margin: margin);
}