Recommendation constructor

Recommendation({
  1. int? id,
  2. int? consultationId,
  3. RecommendationData? data,
  4. String? createdAt,
  5. String? updatedAt,
})

Implementation

Recommendation({
  this.id,
  this.consultationId,
  this.data,
  this.createdAt,
  this.updatedAt,
});