merge method

Implementation

ZeroSnackbarStyleSet merge(ZeroSnackbarStyleSet? other) {
  if (other == null) return this;

  return copyWith(
    snackbar: snackbar?.merge(other.snackbar) ?? other.snackbar,
    alert: alert?.merge(other.alert) ?? other.alert,
  );
}