showSnackbar function

void showSnackbar({
  1. String title = '',
  2. String message = '',
  3. Color backgroundColor = Colors.green,
})

Implementation

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