withContextEntry<T extends ContextEntry> method
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),
);