ChatFolderInfo constructor

const ChatFolderInfo({
  1. required int id,
  2. required String title,
  3. required ChatFolderIcon icon,
  4. required bool isShareable,
  5. required bool hasMyInviteLinks,
  6. dynamic extra,
  7. int? clientId,
})

Contains basic information about a chat folder

Implementation

const ChatFolderInfo({
  required this.id,
  required this.title,
  required this.icon,
  required this.isShareable,
  required this.hasMyInviteLinks,
  this.extra,
  this.clientId,
});