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