copyWith method

RemoteIssueLinkIdentifies copyWith({
  1. int? id,
  2. String? self,
})

Implementation

RemoteIssueLinkIdentifies copyWith({int? id, String? self}) {
  return RemoteIssueLinkIdentifies(
    id: id ?? this.id,
    self: self ?? this.self,
  );
}