OutlinedDotIndicator constructor

const OutlinedDotIndicator(
  1. {Key? key,
  2. double? size,
  3. Color? color,
  4. double? position,
  5. Color? backgroundColor,
  6. double borderWidth = 2.0,
  7. Widget? child}
)

Implementation

const OutlinedDotIndicator({
  Key? key,
  double? size,
  Color? color,
  double? position,
  this.backgroundColor,
  this.borderWidth = 2.0,
  this.child,
})  : assert(size == null || size >= 0),
      assert(position == null || 0 <= position && position <= 1),
      super(
        key: key,
        size: size,
        color: color,
        position: position,
      );