ConversationsModel constructor

ConversationsModel({
  1. int? id,
  2. String? email,
  3. String? username,
  4. String? imageUrl,
  5. List<Chats>? chats,
  6. String? platform,
})

Implementation

ConversationsModel(
    {this.id,
    this.email,
    this.username,
    this.imageUrl,
    this.chats,
    this.platform});