remove static method

bool remove(
  1. LevitReactiveMiddleware middleware
)

Removes a middleware from the global registry.

Implementation

static bool remove(LevitReactiveMiddleware middleware) {
  final result = _middlewares.remove(middleware);
  _updateFlags();
  return result;
}