This plugin has a deprecated code that prevents building Flutter apps:
Failed to build iOS app
Error (Xcode): ../../.pub-cache/hosted/pub.dev/liquid_progress_indicator-0.4.0/lib/src/liquid_circular_progress_indicator.dart:48:46: Error: The getter 'accentColor' isn't defined for the class 'ThemeData'.
The solution is to migrate from accentColor to secondary color, as explained in the documentation:
Code before migration:
Color myColor = Theme.of(context).accentColor;
Code after migration:
Color myColor = Theme.of(context).colorScheme.secondary;