(data: Partial<Task>)
| 268 | result?: any; |
| 269 | |
| 270 | constructor(data: Partial<Task>) { |
| 271 | Object.assign(this, data); |
| 272 | } |
| 273 | |
| 274 | toJson(withResult=true) { |
| 275 | return serializeTask(this, withResult); |
nothing calls this directly
no outgoing calls
no test coverage detected