SnackBarStyle constructor

const SnackBarStyle({
  1. Color? backgroundColor,
  2. TextStyle? textStyle,
  3. Duration? duration,
  4. SnackBarBehavior? behavior,
  5. EdgeInsetsGeometry? margin,
  6. EdgeInsetsGeometry? padding,
  7. double? borderRadius,
  8. double? elevation,
  9. Color? actionTextColor,
  10. bool? enabled,
})

Implementation

const SnackBarStyle({
  this.backgroundColor,
  this.textStyle,
  this.duration,
  this.behavior,
  this.margin,
  this.padding,
  this.borderRadius,
  this.elevation,
  this.actionTextColor,
  this.enabled,
});