Environment enum Null safety
Possible environments for your app
Constructors
- Environment()
-
const
Values
- dev → const Environment
-
to be used during local development
const Environment(0)
- alpha → const Environment
-
to be used when deployed as alpha
const Environment(1)
- beta → const Environment
-
to be used when deployed as beta
const Environment(2)
- production → const Environment
-
to be used when deployed as production
const Environment(3)
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
Environment> -
A constant List of the values in this enum, in order of their declaration.
[dev, alpha, beta, production]