buildMaterial method

  1. @override
Widget buildMaterial(
  1. BuildContext context
)

Implementation

@override
Widget buildMaterial(BuildContext context) {
  final _color = color ?? Theme.of(context).colorScheme.secondary;

  return CircularProgressIndicator(
    strokeWidth: borderWidth * 2,
    valueColor: AlwaysStoppedAnimation<Color>(_color),
  );
}