softlink_flutter library

SoftLink Flutter SDK for deep linking and install attribution.

Initialize with SoftLink.init at app startup:

SoftLink.init(
  baseUrl: 'https://your-backend.com',
  apiKey: 'sl_your_key',
  onDeepLink: (deepLink) {
    if (deepLink == null) return;
    navigateTo(deepLink.screen, deepLink.params);
  },
);

Classes

Main entry point for the SoftLink Flutter SDK.
Represents a resolved deep link from SoftLink.

Typedefs

Callback type for handling resolved deep links.