use method
Implementation
Middleware use(Middleware other) {
return (Context context, Next next) {
return this(context, () => other(context, next));
};
}
Middleware use(Middleware other) {
return (Context context, Next next) {
return this(context, () => other(context, next));
};
}