Middleware class abstract
The Middleware class is used to define a middleware.
Constructors
-
Middleware({List<
String> routes = const ['*']}) -
The Middleware constructor is used to create a new instance of the Middleware class.
const
-
Middleware.shelf(Function handler, {List<
String> routes = const ['*'], bool ignoreResponse = true}) -
The
shelf
factory constructor is used to create a new instance of the Middleware class.factory
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
use(
RequestContext context, NextFunction next) → Future< void> - The use method is used to execute the middleware.
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited