copyWith method

MenusLookAndFeelHoverOrFocus copyWith({
  1. String? backgroundColor,
})

Implementation

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