ChatPhotoInfo constructor

const ChatPhotoInfo({
  1. required File small,
  2. required File big,
  3. Minithumbnail? minithumbnail,
  4. required bool hasAnimation,
  5. required bool isPersonal,
})

Contains basic information about the photo of a chat

Implementation

const ChatPhotoInfo({
  required this.small,
  required this.big,
  this.minithumbnail,
  required this.hasAnimation,
  required this.isPersonal,
});