showSuccessSnackbar function

void showSuccessSnackbar(
  1. String title,
  2. String? message
)

Implementation

void showSuccessSnackbar(String title, String? message) {
  Get.snackbar(
    title,
    message ?? '',
    backgroundColor: Colors.white,
    colorText: primaryColor,
    duration: Duration(seconds: 3),
    borderColor: primaryColor,
    borderWidth: 1,
  );
}