ChatEntity constructor

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

Implementation

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