copyWith method
RenderPayload
copyWith({
- BuildContext? buildContext,
- ScopeContext? scopeContext,
- List<
String> ? widgetHierarchy, - String? currentEntityId,
Implementation
RenderPayload copyWith({
BuildContext? buildContext,
ScopeContext? scopeContext,
List<String>? widgetHierarchy,
String? currentEntityId,
}) {
return RenderPayload(
buildContext: buildContext ?? this.buildContext,
scopeContext: scopeContext ?? this.scopeContext,
widgetHierarchy: widgetHierarchy ?? this.widgetHierarchy,
currentEntityId: currentEntityId ?? this.currentEntityId,
);
}