fileTypePhoto property

FileTypePhoto? fileTypePhoto

The file is a photo

Implementation

FileTypePhoto? get fileTypePhoto {
  if (this is FileTypePhoto) {
    return this as FileTypePhoto;
  }
  return null;
}