copyWith method
Implementation
SSRBuildContext copyWith({
Map<String, dynamic>? config,
Map<String, SSRWidget>? cache,
WidgetRepository? widgetRepository,
Symbol? name,
bool? disableReactivity,
}) {
return SSRBuildContext(
config ?? this.config,
cache ?? this.cache,
widgetRepository ?? this.widgetRepository,
name ?? this.name,
disableReactivity: disableReactivity ?? this.disableReactivity,
);
}