JobMode enum
Enumeration representing the execution mode of a job.
Jobs can operate in two modes:
build
- For building applicationspublish
- For publishing/distributing applications
Values
- build → const JobMode
-
Build mode for compiling and creating application packages.
Used when the job involves building the application for different platforms (Android APK/AAB, iOS IPA, etc.).
- publish → const JobMode
-
Publish mode for distributing application packages.
Used when the job involves publishing the built application to various distribution channels (App Store, Play Store, Firebase, etc.).
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
-
fromString(
String mode) → JobMode -
Creates a
JobMode
from a string representation.