copyWith method
Implementation
OrganizationDTO copyWith(
{SelfLinkDTO? links, DateDTO? created, String? id, String? name}) {
return OrganizationDTO(
links: links ?? this.links,
created: created ?? this.created,
id: id ?? this.id,
name: name ?? this.name,
);
}