copyWith method

Implementation

NomoSnackBarThemeData copyWith([NomoSnackBarThemeDataNullable? override]) {
  return NomoSnackBarThemeData(
    backgroundColor: override?.backgroundColor ?? backgroundColor,
    foregroundColor: override?.foregroundColor ?? foregroundColor,
    elevation: override?.elevation ?? elevation,
    border: override?.border ?? border,
    height: override?.height ?? height,
    margin: override?.margin ?? margin,
    spacing: override?.spacing ?? spacing,
    borderRadius: override?.borderRadius ?? borderRadius,
  );
}