showComingSoon static method
Shows a "Coming soon" snackbar
Implementation
static void showComingSoon(BuildContext context) {
SavePointsSnackbar.show(
context,
title: 'Coming Soon',
subtitle: 'This feature is under development',
type: SnackbarType.info,
);
}