copyWith method
Implementation
PagedLinkDTO copyWith(
{String? base,
String? context,
String? next,
String? prev,
String? self}) {
return PagedLinkDTO(
base: base ?? this.base,
context: context ?? this.context,
next: next ?? this.next,
prev: prev ?? this.prev,
self: self ?? this.self,
);
}