copyWith method

WorkflowStatusLayout copyWith({
  1. num? x,
  2. num? y,
})

Implementation

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