onFinish method
It's called after the memoized function has completed its execution, regardless of whether it was successful or encountered an error.
Implementation
@override
void onFinish(Memo<T, A> memo, A arg) {
for (final interceptor in interceptors) {
interceptor.onFinish(memo, arg);
}
}