myDivider method
Implementation
Widget myDivider() {
print(Get.width.toString());
return Get.width < 570
? const Divider(
color: ColorHelper.blueTint,
)
: Container(
margin: const EdgeInsets.only(right: 20),
color: ColorHelper.blueTint,
height: 100,
width: 1,
);
}