extract method
Produces the value, or the rejection that stops the handler.
Implementation
@override
Future<Result<Result<T, Rejection>, Rejection>> extract(
Request request,
) async {
return Ok(await inner.extract(request));
}
Produces the value, or the rejection that stops the handler.
@override
Future<Result<Result<T, Rejection>, Rejection>> extract(
Request request,
) async {
return Ok(await inner.extract(request));
}