copyWith method

SelfLinkDTO copyWith({
  1. String? self,
})

Implementation

SelfLinkDTO copyWith({String? self}) {
  return SelfLinkDTO(
    self: self ?? this.self,
  );
}