remove static method

bool remove(
  1. int id
)

Removes the FrameworkStabilizer identified by id.

Implementation

static bool remove(int id) {
  var wrappedFn = _idToFrameworkStabilizer.remove(id);
  return wrappedFn == null ? false : _frameworkStabilizers.remove(wrappedFn);
}