SuggestionDTO constructor

SuggestionDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. String? name,
  7. String? surname,
  8. String? phoneNumber,
  9. String? email,
  10. String? subject,
  11. String? message,
  12. bool? solved,
})

Implementation

SuggestionDTO(
    {super.id,
    super.createdAt,
    super.updatedAt,
    super.isActive,
    super.isDeleted,
    this.name,
    this.surname,
    this.phoneNumber,
    this.email,
    this.subject,
    this.message,
    this.solved});