success static method
Shows a FloatingSnackBar with the title
message.
Implementation
static void success(
String title, {
double bottom = 16,
Duration duration = const Duration(seconds: 2),
void Function()? onPressed,
Offset? at,
}) => FloatingSnackBar.show(
title,
bottom: bottom,
duration: duration,
onPressed: onPressed,
at: at,
);