withContextEntry<T extends ContextEntry> method
Clone this response adding an entry
to context
Implementation
Response withContextEntry<T extends ContextEntry>(T entry) => Response(
errors: errors,
data: data,
response: response,
context: context.withEntry<T>(entry),
);