copyWith method
Implementation
WidgetState copyWith({
final CNode? node,
final bool? isVertical,
final int? loop,
}) {
return WidgetState(
node: node ?? this.node,
loop: loop ?? this.loop,
isVertical: isVertical ?? this.isVertical,
);
}