Indicator.outlined constructor

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

Creates a outlined dot indicator.

See also:

Implementation

factory Indicator.outlined({
  Key? key,
  double? size,
  Color? color,
  Color? backgroundColor,
  double? position,
  double borderWidth = 2.0,
  Widget? child,
}) =>
    OutlinedDotIndicator(
      size: size,
      color: color,
      position: position,
      backgroundColor: backgroundColor,
      borderWidth: borderWidth,
      child: child,
    );