EnvironmentVariable class
Represents an app's environment variable.
Constructors
- EnvironmentVariable({required String key, required String value, bool? secure})
-
EnvironmentVariable.fromJson(Map<
String, dynamic> json) -
factory
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- key → String
-
(Required) The environment variable's name, which can consist of up to 64
characters and must be specified. The name can contain upper- and lowercase
letters, numbers, and underscores (_), but it must start with a letter or
underscore.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- secure → bool?
-
(Optional) Whether the variable's value will be returned by the
DescribeApps action. To conceal an environment variable's value, set
Secure
totrue
.DescribeApps
then returnsFILTERED
instead of the actual value. The default value forSecure
isfalse
.final - value → String
-
(Optional) The environment variable's value, which can be left empty. If you
specify a value, it can contain up to 256 characters, which must all be
printable.
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited