ALProgressIndicator constructor

const ALProgressIndicator({
  1. Key? key,
  2. required Color indicatorColor,
  3. required String loadingText,
  4. required String secondaryText,
  5. double? strokeWidth,
})

Implementation

const ALProgressIndicator({
  Key? key,
  required this.indicatorColor,
  required this.loadingText,
  required this.secondaryText,
  this.strokeWidth, // Optional strokeWidth parameter
}) : super(key: key);