withContextEntry<T extends ContextEntry> method

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

Clone this request adding an entry to context

Implementation

Request withContextEntry<T extends ContextEntry>(T entry) => Request(
      operation: operation,
      variables: variables,
      context: context.withEntry<T>(entry),
    );