fileTypePhotoStory property

FileTypePhotoStory? fileTypePhotoStory

The file is a photo published as a story

Implementation

FileTypePhotoStory? get fileTypePhotoStory {
  if (this is FileTypePhotoStory) {
    return this as FileTypePhotoStory;
  }
  return null;
}