copyWith method
Implementation
GroupLabel copyWith({String? text, String? title, GroupLabelType? type}) {
return GroupLabel(
text: text ?? this.text,
title: title ?? this.title,
type: type ?? this.type,
);
}
GroupLabel copyWith({String? text, String? title, GroupLabelType? type}) {
return GroupLabel(
text: text ?? this.text,
title: title ?? this.title,
type: type ?? this.type,
);
}