copyWith method
Copy with selective overrides.
Implementation
AccentPanelThemeData copyWith({
Color? accentColor,
int? accentWidth,
Color? background,
Color? foreground,
EdgeInsets? padding,
Border? border,
}) {
return AccentPanelThemeData(
accentColor: accentColor ?? this.accentColor,
accentWidth: accentWidth ?? this.accentWidth,
background: background ?? this.background,
foreground: foreground ?? this.foreground,
padding: padding ?? this.padding,
border: border ?? this.border,
);
}