ChatMemberInfoEntity constructor

ChatMemberInfoEntity({
  1. required String? authorId,
  2. required String? appId,
  3. String? roomId,
  4. Object? timestamp,
  5. int? accessibleByGroup,
  6. List<String>? accessibleByMembers,
  7. List<String>? readAccess,
})

Implementation

ChatMemberInfoEntity({
  required this.authorId,
  required this.appId,
  this.roomId,
  this.timestamp,
  this.accessibleByGroup,
  this.accessibleByMembers,
  this.readAccess,
});