create method
Creates a new EnvironmentVariable with the specified name and value.
Throws a DuplicateEntryException if an environment variable with the same name already exists.
Implementation
_i2.Future<_i19.EnvironmentVariable> create(
String name,
String value,
String cloudCapsuleId,
) => caller.callServerEndpoint<_i19.EnvironmentVariable>(
'environmentVariables',
'create',
{'name': name, 'value': value, 'cloudCapsuleId': cloudCapsuleId},
);