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