ChatModel
class ChatModel(var type: ChatType, var id: String = "", var lastMessage: MessageModel? = null, var timestamp: FirebaseDate = FirebaseDate(), var participants: MutableList<ChatParticipantModel> = mutableListOf(), var image: String = "", var name: String = "", var eventType: ReactiveEvent.TYPE? = null, var path: String? = null) : ReactiveEvent, Parcelable, Comparable<ChatModel>
Constructors
Link copied to clipboard
constructor(type: ChatType, id: String = "", lastMessage: MessageModel? = null, timestamp: FirebaseDate = FirebaseDate(), participants: MutableList<ChatParticipantModel> = mutableListOf(), image: String = "", name: String = "", eventType: ReactiveEvent.TYPE? = null, path: String? = null)