FloatingSnackBar constructor

const FloatingSnackBar({
  1. Key? key,
  2. required Widget child,
  3. Duration duration = const Duration(seconds: 2),
  4. void onEnd()?,
  5. void onPressed()?,
  6. double bottom = 16,
  7. Offset? at,
})

Implementation

const FloatingSnackBar({
  super.key,
  required this.child,
  this.duration = const Duration(seconds: 2),
  this.onEnd,
  this.onPressed,
  this.bottom = 16,
  this.at,
});