showCommonSnackBar function
Implementation
void showCommonSnackBar(
BuildContext context,
Text content, {
int durationSeconds = 1,
}) {
HyttaHubOptions.scaffoldMessengerKey.currentState?.clearSnackBars();
HyttaHubOptions.scaffoldMessengerKey.currentState?.showSnackBar(
commonSnackBar(context, content, durationSeconds: durationSeconds),
);
}