FakeConversation constructor

FakeConversation({
  1. required String id,
  2. required String senderName,
  3. required String senderAvatarUrl,
  4. required String lastMessage,
  5. required DateTime timestamp,
  6. bool isRead = false,
  7. bool isTyping = false,
})

Implementation

FakeConversation({
  required this.id,
  required this.senderName,
  required this.senderAvatarUrl,
  required this.lastMessage,
  required this.timestamp,
  this.isRead = false,
  this.isTyping = false,
});