ProgressIndicatorWidget constructor

const ProgressIndicatorWidget({
  1. Key? key,
  2. required double downloadProgress,
  3. required bool isDownloading,
  4. required bool isFetching,
})

Implementation

const ProgressIndicatorWidget({
  Key? key,
  required this.downloadProgress,
  required this.isDownloading,
  required this.isFetching,
}) : super(key: key);