CustomIndicator constructor

const CustomIndicator({
  1. Key? key,
  2. Color indicatorColor = Colors.blue,
  3. bool isActive = false,
  4. required Widget child,
  5. double opacity = 0.6,
  6. Color bgColor = Colors.grey,
})

Implementation

const CustomIndicator(
    {super.key,
    this.indicatorColor = Colors.blue,
    this.isActive = false,
    required this.child,
    this.opacity = 0.6,
    this.bgColor = Colors.grey});