progressIndicator function

Widget progressIndicator(
  1. AppModel app,
  2. BuildContext context, {
  3. Animation<Color>? valueColor,
})

Implementation

Widget progressIndicator(AppModel app, BuildContext context,
        {Animation<Color>? valueColor}) =>
    StyleRegistry.registry()
        .styleWithApp(app)
        .frontEndStyle()
        .progressIndicatorStyle()
        .progressIndicator(app, context, valueColor: valueColor);