AttachmentLinkDTO.fromJson constructor
Implementation
factory AttachmentLinkDTO.fromJson(Map<String, Object?> json) {
return AttachmentLinkDTO(
content: json[r'content'] as String?,
jiraRest: json[r'jiraRest'] as String?,
self: json[r'self'] as String?,
thumbnail: json[r'thumbnail'] as String?,
);
}