IndicatorTheme constructor

const IndicatorTheme({
  1. Key? key,
  2. required IndicatorThemeData data,
  3. required Widget child,
})

Creates an indicator theme that controls the color and size for DotIndicators, indicators inside TimelineNodes.

Implementation

const IndicatorTheme({
  Key? key,
  required this.data,
  required Widget child,
}) : super(key: key, child: child);