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