removeGlobalVariable method

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

Removes the value for variableName globally.

Implementation

void removeGlobalVariable({required String variableName}) =>
    _globalVariables.remove(variableName);