Material constructor

const Material({
  1. required int id,
  2. required int courseOffering,
  3. String? title,
  4. String? href,
})

Implementation

const Material({
  required this.id,
  required this.courseOffering,
  this.title,
  this.href,
});