fileTypeProfilePhoto property

FileTypeProfilePhoto? fileTypeProfilePhoto

The file is a profile photo

Implementation

FileTypeProfilePhoto? get fileTypeProfilePhoto {
  if (this is FileTypeProfilePhoto) {
    return this as FileTypeProfilePhoto;
  }
  return null;
}