Detail constructor

Detail({
  1. double? creditTaken,
  2. double? creditEarned,
  3. double? conduct,
  4. double? average,
  5. String? classRank,
  6. String? departmentRank,
  7. double? classPercentage,
})

Implementation

Detail({
  this.creditTaken,
  this.creditEarned,
  this.conduct,
  this.average,
  this.classRank,
  this.departmentRank,
  this.classPercentage,
});