ChatUserModel constructor

const ChatUserModel({
  1. String? id,
  2. String? firstName,
  3. String? lastName,
  4. String? imageUrl,
})

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,
});