PushMessageContentPhoto constructor

const PushMessageContentPhoto({
  1. Photo? photo,
  2. required String caption,
  3. required bool isSecret,
  4. required bool isPinned,
})

A photo message

Implementation

const PushMessageContentPhoto({
  this.photo,
  required this.caption,
  required this.isSecret,
  required this.isPinned,
});