SimpleChatUser constructor

const SimpleChatUser({
  1. required String id,
  2. required String name,
  3. String? imageUrl,
  4. String? initials,
})

Implementation

const SimpleChatUser({
  required this.id,
  required this.name,
  this.imageUrl,
  this.initials,
});