buildMaterial method
Implementation
@override
Widget buildMaterial(BuildContext context) {
final _color = color ?? Theme.of(context).colorScheme.secondary;
return CircularProgressIndicator(
strokeWidth: borderWidth * 2,
valueColor: AlwaysStoppedAnimation<Color>(_color),
);
}