getSpace method

Widget getSpace({
  1. required bool isMobile,
})

Implementation

Widget getSpace({required bool isMobile}) {
  if (mainAxisSize == MainAxisSize.max) {
    return const Spacer();
  } else {
    return SizedBox(
      width: S360fDimension.getSpacing(multiplier: isMobile ? 1 : 3),
    );
  }
}