copyWith method

IssueLinkType copyWith({
  1. String? id,
  2. String? inward,
  3. String? name,
  4. String? outward,
  5. String? self,
})

Implementation

IssueLinkType copyWith(
    {String? id,
    String? inward,
    String? name,
    String? outward,
    String? self}) {
  return IssueLinkType(
    id: id ?? this.id,
    inward: inward ?? this.inward,
    name: name ?? this.name,
    outward: outward ?? this.outward,
    self: self ?? this.self,
  );
}