toJSON method

JSONString toJSON()

Implementation

JSONString toJSON() {
  return JSONStringResult(
    data: {
      "manager": manager,
      "filePath": filePath,
      "parsedIdentifier": parsedIdentifier,
      "identifierFormat": identifierFormat,
      "succeedTasks": succeedTasks.toList(),
      ...otherProps,
    },
  ).toString();
}