success static method

void success(
  1. String title, {
  2. double bottom = 16,
  3. Duration duration = const Duration(seconds: 2),
  4. void onPressed()?,
  5. Offset? at,
})

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,
);