toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    "manager": manager,
    "filePath": filePath,
    "fullIdentifier": parsedIdentifier,
    "identifierFormat": identifierFormat,
    "succeedTasks": succeedTasks.toList(),
    ...singleton.otherProps,
  };
}