ScoreScaffold constructor

const ScoreScaffold({
  1. Key? key,
  2. required ScoreState state,
  3. required ScoreData? scoreData,
  4. required dynamic onRefresh()?,
  5. String? title,
  6. Widget? itemPicker,
  7. SemesterData? semesterData,
  8. dynamic onSelect(
    1. int index
    )?,
  9. dynamic onSearchButtonClick()?,
  10. String? middleTitle,
  11. String? finalTitle,
  12. dynamic onScoreSelect(
    1. int index
    )?,
  13. Widget middleScoreBuilder(
    1. int index
    )?,
  14. Widget finalScoreBuilder(
    1. int index
    )?,
  15. String? customHint,
  16. bool isShowSearchButton = true,
  17. List<String>? details,
  18. Widget? bottom,
  19. String? customStateHint,
})

Implementation

const ScoreScaffold({
  Key? key,
  required this.state,
  required this.scoreData,
  required this.onRefresh,
  this.title,
  this.itemPicker,
  this.semesterData,
  this.onSelect,
  this.onSearchButtonClick,
  this.middleTitle,
  this.finalTitle,
  this.onScoreSelect,
  this.middleScoreBuilder,
  this.finalScoreBuilder,
  this.customHint,
  this.isShowSearchButton = true,
  this.details,
  this.bottom,
  this.customStateHint,
}) : super(key: key);