DetailPage constructor

const DetailPage({
  1. Key? key,
  2. required String title,
  3. required ContestDataModel data,
  4. required SnipeProvider provider,
  5. required bool isPast,
  6. bool isCustom = false,
})

Implementation

const DetailPage({
  super.key,
  required this.title,
  required this.data,
  required this.provider,
  required this.isPast,
  this.isCustom = false,
});