fileTypeVideoStory property

FileTypeVideoStory? fileTypeVideoStory

The file is a video published as a story

Implementation

FileTypeVideoStory? get fileTypeVideoStory {
  if (this is FileTypeVideoStory) {
    return this as FileTypeVideoStory;
  }
  return null;
}