fileTypeAnimation property

FileTypeAnimation? fileTypeAnimation

The file is an animation

Implementation

FileTypeAnimation? get fileTypeAnimation {
  if (this is FileTypeAnimation) {
    return this as FileTypeAnimation;
  }
  return null;
}