operator + method

WorkStatus operator +(
  1. WorkStatus other
)

Implementation

WorkStatus operator +(WorkStatus other) {
  return this.copyWith(
    phase: other.phase,
    jobId: other.jobId,
    message: other.message,
    error: other.error,
    errorStack: other.errorStack,
    completed: other.completed,
    total: other.total,
    percentComplete: other.percentComplete,
    more: other.more,
  );
}