showSnackbar function
void
showSnackbar({})
Implementation
void showSnackbar({
String title = '',
String message = '',
Color backgroundColor = Colors.green,
}) {
Get.snackbar(
title,
message,
backgroundColor: backgroundColor,
colorText: Colors.white,
duration: Duration(seconds: 6),
);
}