updateContextEntry<T extends ContextEntry> method
Clone this response updating an entry
to context
Implementation
Response updateContextEntry<T extends ContextEntry>(
ContextUpdater<T?> update,
) =>
Response(
errors: errors,
data: data,
response: response,
context: context.updateEntry<T>(update),
);