Tutor constructor

Tutor({
  1. int? id,
  2. required String name,
  3. String? firstName,
  4. String? ref,
  5. String? photoCard,
  6. String? subject,
})

Returns a new Tutor instance.

Implementation

Tutor({
  this.id,
  required this.name,
  this.firstName,
  this.ref,
  this.photoCard,
  this.subject,
});