copyWith method
Implementation
QuickFilterBean copyWith(
{int? id,
int? boardId,
String? name,
String? jql,
String? description,
int? position}) {
return QuickFilterBean(
id: id ?? this.id,
boardId: boardId ?? this.boardId,
name: name ?? this.name,
jql: jql ?? this.jql,
description: description ?? this.description,
position: position ?? this.position,
);
}