copyWith method

TopNavigationLookAndFeelHoverOrFocus copyWith({
  1. String? backgroundColor,
  2. String? color,
})

Implementation

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