update method

Future<EnvironmentVariable> update({
  1. required String name,
  2. required String value,
  3. required String cloudCapsuleId,
})

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},
);