Course constructor

Course({
  1. String? alternateLink,
  2. String? calendarId,
  3. String? courseGroupEmail,
  4. List<CourseMaterialSet>? courseMaterialSets,
  5. String? courseState,
  6. String? creationTime,
  7. String? description,
  8. String? descriptionHeading,
  9. String? enrollmentCode,
  10. GradebookSettings? gradebookSettings,
  11. bool? guardiansEnabled,
  12. String? id,
  13. String? name,
  14. String? ownerId,
  15. String? room,
  16. String? section,
  17. DriveFolder? teacherFolder,
  18. String? teacherGroupEmail,
  19. String? updateTime,
})

Implementation

Course({
  this.alternateLink,
  this.calendarId,
  this.courseGroupEmail,
  this.courseMaterialSets,
  this.courseState,
  this.creationTime,
  this.description,
  this.descriptionHeading,
  this.enrollmentCode,
  this.gradebookSettings,
  this.guardiansEnabled,
  this.id,
  this.name,
  this.ownerId,
  this.room,
  this.section,
  this.teacherFolder,
  this.teacherGroupEmail,
  this.updateTime,
});