StudentModel constructor

StudentModel({
  1. String? id,
  2. String? name,
  3. String? phoneNumber,
  4. String? email,
  5. String? schoolName,
  6. String? idAuth,
})

Implementation

StudentModel({
  this.id,
  this.name,
  this.phoneNumber,
  this.email,
  this.schoolName,
  this.idAuth,
});