copyWith method
Implementation
UISectionHeader copyWith({
Key? key,
String? title,
IconData? icon,
Color? iconColor,
}) {
return UISectionHeader(
key: key ?? this.key,
title: title ?? this.title,
icon: icon ?? this.icon,
iconColor: iconColor ?? this.iconColor,
);
}