IndexTutors constructor

IndexTutors({
  1. List<IndexTutorCard> rating = const [],
  2. List<IndexTutorCard> popular = const [],
  3. List<IndexTutorCard> experienced = const [],
  4. List<IndexTutorCard> price = const [],
  5. String? subjects,
})

Returns a new IndexTutors instance.

Implementation

IndexTutors({
  this.rating = const [],
  this.popular = const [],
  this.experienced = const [],
  this.price = const [],
  this.subjects,
});