removeHelper method

bool removeHelper(
  1. String name
)

removes a helper function with a given name

Implementation

bool removeHelper(String name) {
  if (_helpers.containsKey(name)) {
    _helpers.remove(name);
    return true;
  }

  return false;
}