extract method

  1. @override
Future<Result<Uint8List, Rejection>> extract(
  1. Request request
)
override

Produces the value, or the rejection that stops the handler.

Implementation

@override
Future<Result<Uint8List, Rejection>> extract(Request request) =>
    readBody(request, limit: limit);