copyWith method
Override
copyWith({
- String? node,
- String? component,
- List<
NodeProperty> ? properties, - BuilderFunction? builder,
Implementation
Override copyWith({
String? node,
String? component,
List<NodeProperty>? properties,
BuilderFunction? builder,
}) {
return Override(
node ?? this.node,
component: component ?? this.component,
props: properties ?? this.properties,
builder: builder ?? this.builder,
);
}