space function
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);
}
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);
}