copyWith method
Implementation
AssistMessageToolbarItem copyWith({
Widget? content,
String? tooltip,
bool? isSelected,
}) {
return AssistMessageToolbarItem(
content: content ?? this.content,
tooltip: tooltip ?? this.tooltip,
isSelected: isSelected ?? this.isSelected,
);
}