ChatSessionResponse constructor

ChatSessionResponse({
  1. int? id,
  2. String? guid,
  3. UserViewModel? taskOwner,
  4. UserViewModel? user,
  5. TaskViewModel? task,
  6. DateTime? lastMessageAt,
})

Implementation

ChatSessionResponse({
  this.id,
  this.guid,
  this.taskOwner,
  this.user,
  this.task,
  this.lastMessageAt,
});