ItemView constructor

ItemView({
  1. Key? key,
  2. required String? userAvatar,
  3. required Color? avatarColor,
  4. required String username,
  5. required String subject,
  6. required String body,
  7. required bool starred,
  8. required String timeAgo,
  9. required bool seen,
  10. required bool file,
  11. required String filename,
})

Implementation

ItemView(
    {super.key,
      required this.userAvatar,
      required this.avatarColor,
      required this.username,
      required this.subject,
      required this.body,
      required this.starred,
      required this.timeAgo,
      required this.seen,
      required this.file,
      required this.filename});