hSpacer method

Widget hSpacer({
  1. int multiplier = 1,
  2. bool small = false,
})

Implementation

Widget hSpacer({int multiplier = 1, bool small = false}) {
  if (small) {
    return SizedBox(width: smallPaddingValue);
  }
  return SizedBox(
    width: lateralPaddingValue * multiplier,
  );
}