copyWith method
Implementation
ReorderListViewAction copyWith({
ID? id,
String? type,
ActionGroups? group,
ID? controllerID,
int? index,
NodeID? nodeID,
}) {
return ReorderListViewAction(
id: id ?? this.id,
type: type ?? this.type,
controllerID: controllerID ?? this.controllerID,
index: index ?? this.index,
nodeID: nodeID ?? this.nodeID,
);
}