ExitSnackBarConfig constructor

const ExitSnackBarConfig({
  1. Widget content = const Text('Tap again to exit'),
  2. SnackBarBehavior behavior = SnackBarBehavior.floating,
  3. Color? backgroundColor,
  4. ShapeBorder? shape,
  5. EdgeInsetsGeometry? margin,
  6. double? elevation,
  7. Duration duration = const Duration(seconds: 2),
})

Implementation

const ExitSnackBarConfig({
  this.content = const Text('Tap again to exit'),
  this.behavior = SnackBarBehavior.floating,
  this.backgroundColor,
  this.shape,
  this.margin,
  this.elevation,
  this.duration = const Duration(seconds: 2),
});