hSpacer method

Widget hSpacer({
  1. dynamic color = Colors.transparent,
})

Implementation

Widget hSpacer({color = Colors.transparent}) {
  return Container(
    color: color,
    width: hsp,
  );
}