SunnyProgressIndicator<T> constructor

const SunnyProgressIndicator<T>({
  1. Key? key,
  2. required ProgressTracker<T>? tracker,
  3. double? size,
  4. bool circular = true,
  5. bool showPercent = false,
  6. bool showTask = false,
  7. Color? background,
  8. ProgressBuilder? builder,
})

Implementation

const SunnyProgressIndicator({
  Key? key,
  required this.tracker,
  this.size,
  this.circular = true,
  this.showPercent = false,
  this.showTask = false,
  this.background,
  this.builder,
}) : super(key: key);