School constructor

School({
  1. int? schoolID,
  2. String? schoolName,
  3. String? schoolshortName,
  4. Media? schoolBanner,
  5. String? schoolURL,
  6. List<User>? schoolUsers,
  7. int? schoolUsersCount,
})

Implementation

School({
  this.schoolID,
  this.schoolName,
  this.schoolshortName,
  this.schoolLogo,
  this.schoolBanner,
  this.schoolURL,
  this.schoolUsers,
  this.schoolUsersCount,
});