copyWith method

Implementation

NomoNotificationThemeData copyWith(
    [NomoNotificationThemeDataNullable? override]) {
  return NomoNotificationThemeData(
    backgroundColor: override?.backgroundColor ?? backgroundColor,
    foregroundColor: override?.foregroundColor ?? foregroundColor,
    padding: override?.padding ?? padding,
    borderRadius: override?.borderRadius ?? borderRadius,
    spacing: override?.spacing ?? spacing,
    maxWidth: override?.maxWidth ?? maxWidth,
  );
}