PostReview constructor

PostReview(
  1. {int? id,
  2. int? userId,
  3. int? typeId,
  4. String? type,
  5. String? fullName,
  6. String? activityType,
  7. String? profileImage,
  8. String? createdAt,
  9. String? activityMessage}
)

Implementation

PostReview({
  this.id,
  this.userId,
  this.typeId,
  this.type,
  this.fullName,
  this.activityType,
  this.profileImage,
  this.createdAt,
  this.activityMessage,
});