copyWith method

IssueTypeUpdateBean copyWith({
  1. int? avatarId,
  2. String? description,
  3. String? name,
})

Implementation

IssueTypeUpdateBean copyWith(
    {int? avatarId, String? description, String? name}) {
  return IssueTypeUpdateBean(
    avatarId: avatarId ?? this.avatarId,
    description: description ?? this.description,
    name: name ?? this.name,
  );
}