ProgressIndicatorTheme constructor Null safety
- {Key? key,
- required ProgressIndicatorThemeData data,
- required Widget child}
Creates a theme that controls the configurations for ProgressIndicator widgets.
Implementation
const ProgressIndicatorTheme({
super.key,
required this.data,
required super.child,
}) : assert(data != null);