TutorProfileMinimal constructor

TutorProfileMinimal({
  1. int? id,
  2. String? photo,
  3. int numReviews = 0,
  4. int rating = 0,
  5. required String name,
  6. String? experience,
  7. int? experienceYears,
  8. bool? isDbsChecked,
  9. int? userId,
  10. bool isOnline = false,
})

Returns a new TutorProfileMinimal instance.

Implementation

TutorProfileMinimal({
  this.id,
  this.photo,
  this.numReviews = 0,
  this.rating = 0,
  required this.name,
  this.experience,
  this.experienceYears,
  this.isDbsChecked,
  this.userId,
  this.isOnline = false,
});