PdfCombinerStatus enum

Represents the status of operations related to PDF and image processing.

This enum is used generically across three main functions:

  • Merging multiple PDFs.
  • Creating an image from a PDF.
  • Creating a PDF from multiple images.
Inheritance
Available extensions

Values

empty → const PdfCombinerStatus

Indicates that no operation has started or there is no input.

success → const PdfCombinerStatus

Indicates that the operation completed successfully.

error → const PdfCombinerStatus

Indicates that an error occurred during the operation.

processing → const PdfCombinerStatus

Indicates that the operation is currently in progress.

unknown → const PdfCombinerStatus

Represents an undefined or unrecognized status.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

from(String string) PdfCombinerStatus
Converts a string into a corresponding PdfCombinerStatus value.

Constants

values → const List<PdfCombinerStatus>
A constant List of the values in this enum, in order of their declaration.