copyWithChainedContext method
Implementation
RenderPayload copyWithChainedContext(
ScopeContext scopeContext, {
BuildContext? buildContext,
}) {
return copyWith(
buildContext: buildContext ?? this.buildContext,
scopeContext: _chainExprContext(scopeContext),
);
}