call method

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

Handles the request.

Implementation

FutureOr<void> call(Context context, Next next) {
  // Register the [Multer] instance on the [Context].
  context[Multer] = this;

  return next();
}