copyWith method

Linkable copyWith({
  1. SelfLinkDTO? links,
})

Implementation

Linkable copyWith({SelfLinkDTO? links}) {
  return Linkable(
    links: links ?? this.links,
  );
}