stackbarNotification static method
Implementation
static void stackbarNotification(BuildContext context, String text) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
backgroundColor: Get.theme.scaffoldBackgroundColor,
content: Text(
text,
textAlign: TextAlign.center,
),
duration: const Duration(milliseconds: 800),
),
);
}