Course constructor

const Course({
  1. required String code,
  2. required String title,
  3. required String description,
})

Implementation

const Course({
  required this.code,
  required this.title,
  required this.description,
});