ChatUser constructor

ChatUser({
  1. required String id,
  2. String? profileImage,
  3. Map<String, dynamic>? customProperties,
  4. String? firstName,
  5. String? lastName,
})

Implementation

ChatUser({
  required this.id,
  this.profileImage,
  this.customProperties,
  this.firstName,
  this.lastName,
});