ChatUser constructor

const ChatUser({
  1. required String userID,
  2. String? name,
  3. String? photoUrl,
})

Create user

Implementation

const ChatUser({required this.userID, this.name, this.photoUrl});