createSuccessContextForResponse method
AFFinishQuerySuccessContext<TResponse>
createSuccessContextForResponse({
- required AFDispatcher dispatcher,
- required AFState state,
- required TResponse response,
- required bool isPreExecute,
Implementation
AFFinishQuerySuccessContext<TResponse> createSuccessContextForResponse({
required AFDispatcher dispatcher,
required AFState state,
required TResponse response,
required bool isPreExecute,
}) {
return AFFinishQuerySuccessContext<TResponse>(
conceptualStore: conceptualStore,
response: response,
isPreExecute: isPreExecute,
);
}