copyWith method
Implementation
TopNavigationLookAndFeelHoverOrFocus copyWith(
{String? backgroundColor, String? color}) {
return TopNavigationLookAndFeelHoverOrFocus(
backgroundColor: backgroundColor ?? this.backgroundColor,
color: color ?? this.color,
);
}