stopMiddleware<T> function

Future stopMiddleware<T>(
  1. T context,
  2. NextMiddleware next
)

Does not call next() in middleware

Implementation

Future<dynamic> stopMiddleware<T>(T context, NextMiddleware next) =>
    Future.value();