Current topic: "Refactoring SentryWrapper" Topic summary: I am refactoring the `SentryWrapper` interface and its implementation to encapsulate Sentry configuration. By moving `SentryInitParams` into the constructor of `SentryWrapperImpl`, I'm removing the need to pass these parameters during every lazy initialization call. This leads to a cleaner API and reduces the leakage of build-specific metadata into other parts of the application, as recommended by the reviewer. Strategic Intent: Refactoring `SentryWrapper` to own its configuration.