withContextEntry<T extends ContextEntry> method

Response withContextEntry<T extends ContextEntry>(
  1. T entry
)

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),
    );