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