CourseBorder constructor

const CourseBorder({
  1. Key? key,
  2. Course? course,
  3. SectionTime? sectionTime,
  4. TimeCode? timeCode,
  5. void onPressed(
    1. int weekday,
    2. TimeCode timeCode,
    3. Course course
    )?,
  6. double height = _courseHeight,
  7. double width = double.maxFinite,
  8. Border? border,
  9. Color? color,
})

Implementation

const CourseBorder({
  super.key,
  this.course,
  this.sectionTime,
  this.timeCode,
  this.onPressed,
  this.height = _courseHeight,
  this.width = double.maxFinite,
  this.border,
  this.color,
});