fileTypeVideo property

FileTypeVideo? fileTypeVideo

The file is a video

Implementation

FileTypeVideo? get fileTypeVideo {
  if (this is FileTypeVideo) {
    return this as FileTypeVideo;
  }
  return null;
}