ProgressTile constructor

const ProgressTile({
  1. Key? key,
  2. required int currValue,
  3. required Color accentColor,
  4. required ContestDataModel contestData,
  5. required SnipeProvider provider,
  6. required bool isPast,
  7. bool isCustom = false,
})

Implementation

const ProgressTile({
  Key? key,
  // required this.title,
  required this.currValue,
  // required this.maxValue,
  required this.accentColor,
  required this.contestData,
  required this.provider,
  required this.isPast,
  this.isCustom = false,
}) : super(key: key);