MiddlewareRegistry class
Registry for custom middleware that can be applied to specific endpoints.
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Properties
Static Methods
-
clear(
) → void - Clear all registered middleware (mainly for testing).
-
get(
String name) → Middleware Function()? - Get a registered middleware by name.
-
has(
String name) → bool - Check if a middleware is registered.
-
register(
String name, Middleware middleware()) → void - Register a named middleware that can be referenced in annotations.