DotBarOptions constructor

DotBarOptions({
  1. double iconSize = 26.0,
  2. EdgeInsets? padding,
  3. bool inkEffect = false,
  4. Color? inkColor = Colors.grey,
  5. DotStyle dotStyle = DotStyle.circle,
  6. Gradient? gradient,
})

Implementation

DotBarOptions({
  this.iconSize = 26.0,
  this.padding,
  this.inkEffect = false,
  this.inkColor = Colors.grey,
  this.dotStyle = DotStyle.circle,
  this.gradient,
});