IndicatorTheme constructor

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

Implementation

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