copyWith method
Implementation
WorkflowStatusLayout copyWith({num? x, num? y}) {
return WorkflowStatusLayout(
x: x ?? this.x,
y: y ?? this.y,
);
}
WorkflowStatusLayout copyWith({num? x, num? y}) {
return WorkflowStatusLayout(
x: x ?? this.x,
y: y ?? this.y,
);
}