toJson method

Map<String, dynamic> toJson()

Implementation

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