copyWith method
Implementation
LinkGroupHeader copyWith(
{String? id,
String? styleClass,
String? iconClass,
String? label,
String? title,
String? href,
int? weight}) {
return LinkGroupHeader(
id: id ?? this.id,
styleClass: styleClass ?? this.styleClass,
iconClass: iconClass ?? this.iconClass,
label: label ?? this.label,
title: title ?? this.title,
href: href ?? this.href,
weight: weight ?? this.weight,
);
}