copyWith method
Implementation
NiceKanbanColumn<T> copyWith({
String? id,
String? title,
List<T>? items,
Color? color,
IconData? icon,
int? limit,
bool? collapsed,
}) {
return NiceKanbanColumn<T>(
id: id ?? this.id,
title: title ?? this.title,
items: items ?? this.items,
color: color ?? this.color,
icon: icon ?? this.icon,
limit: limit ?? this.limit,
collapsed: collapsed ?? this.collapsed,
);
}