Course constructor Null safety
- {int id = 0,
 - String subject = '',
 - String group = '',
 - String teacher = '',
 - String management = ''}
 
Implementation
const Course({
  this.id = 0,
  this.subject = '',
  this.group = '',
  this.teacher = '',
  this.management = '',
});