Plugin, get original function parameters in after method
My own solution: Use around method, and as first call the $proceed. If anyone have another solution, i would like to hear it.
public function aroundFooBar(InterceptorInterface $object, callable $proceed, ..args)
{
$result = $proceed(..args)
// after code
return $result;
}