updateContextEntry<T extends ContextEntry> method

Request updateContextEntry<T extends ContextEntry>(
  1. ContextUpdater<T?> update
)

Clone this request updating an entry in the context

Implementation

Request updateContextEntry<T extends ContextEntry>(
  ContextUpdater<T?> update,
) =>
    Request(
      operation: operation,
      variables: variables,
      context: context.updateEntry<T>(update),
    );