BuildMode enum
Enum representing the build mode of the application.
The build mode is used to determine where the application will be built.
The two possible values are:
Values
- debug → const BuildMode
-
Debug build mode.
The application will be built in debug mode. This means that the application will be built with debug symbols and will be able to be debugged.
const BuildMode('Debug')
- release → const BuildMode
-
Release build mode.
The application will be built in release mode. This means that the application will be built without debug symbols and will be optimized for performance.
const BuildMode('Release')
Properties
- buildPath → String
-
The path where the runner will be built.
no setter
- capitalize → String
-
The capitalized name of the build mode.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- installerPath → String
-
The path where the installer will be built.
no setter
- 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