ChatUserModel constructor
Constructs a ChatUserModel instance.
id: The ID of the user.
firstName: The first name of the user.
lastName: The last name of the user.
imageUrl: The URL of the user's image.
Implementation
const ChatUserModel({
this.id,
this.firstName,
this.lastName,
this.imageUrl,
});