ChatFolderInfo constructor

ChatFolderInfo({
  1. required int id,
  2. ChatFolderName? name,
  3. ChatFolderIcon? icon,
  4. required int colorId,
  5. required bool isShareable,
  6. required bool hasMyInviteLinks,
})

Implementation

ChatFolderInfo({
  required this.id,
  this.name,
  this.icon,
  required this.colorId,
  required this.isShareable,
  required this.hasMyInviteLinks,
});