update method
Creates a new EnvironmentVariable with the specified name and value.
Throws a NotFoundException if the environment variable is not found.
Implementation
_i2.Future<_i23.EnvironmentVariable> update({
required String name,
required String value,
required String cloudCapsuleId,
}) => caller.callServerEndpoint<_i23.EnvironmentVariable>(
'environmentVariables',
'update',
{'name': name, 'value': value, 'cloudCapsuleId': cloudCapsuleId},
);