FirstRunProgressIndicator constructor

const FirstRunProgressIndicator({
  1. Key? key,
  2. required int currentIndex,
  3. required int total,
})

Creates a progress indicator.

Implementation

const FirstRunProgressIndicator({
  super.key,
  required this.currentIndex,
  required this.total,
});