Users constructor

Users({
  1. int? conversationId,
  2. String? name,
  3. int? online,
  4. String? lastSeen,
  5. String? image,
  6. String? lastMessage,
  7. String? lastMessageTime,
  8. bool? isFavorite,
})

Implementation

Users(
    {this.conversationId,
    this.name,
    this.online,
    this.lastSeen,
    this.image,
    this.lastMessage,
    this.lastMessageTime,
    this.isFavorite});