removeTestVariable method

void removeTestVariable({
  1. required String variableName,
})

Removes the value for variableName for the current test.

Implementation

void removeTestVariable({required String variableName}) =>
    _testVariables.remove(variableName);