attach method
Implementation
@override
Widget? attach(BuildContext context, ProgressViewController controller) {
return CircularProgressIndicator(
backgroundColor: controller.progressBackground,
color: controller.progressForeground ?? context.primaryColor,
strokeWidth: controller.progressStrokeWidth,
);
}