AnimatedBarOptions constructor

AnimatedBarOptions({
  1. double iconSize = 26.0,
  2. EdgeInsets? padding,
  3. bool inkEffect = false,
  4. Color? inkColor = Colors.grey,
  5. double? opacity = 0.8,
  6. BarAnimation barAnimation = BarAnimation.fade,
  7. IconStyle? iconStyle = IconStyle.Default,
})

Implementation

AnimatedBarOptions({
  this.iconSize = 26.0,
  this.padding,
  this.inkEffect = false,
  this.inkColor = Colors.grey,
  this.opacity = 0.8,
  this.barAnimation = BarAnimation.fade,
  this.iconStyle = IconStyle.Default,
});