call method

FutureOr<void> call(
  1. Context context,
  2. Next next
)

Cast the Urlencoded instance to a Middleware.

Implementation

FutureOr<void> call(Context context, Next next) {
  context.set(key, this);

  return next();
}