Flutter SDK
This snippet uses the real API surface shipped in sdk/sankofa_flutter.
await Sankofa.instance.init(
apiKey: 'sk_live_12345',
endpoint: 'http://localhost:8080',
debug: true,
enableSessionReplay: true,
);
await Sankofa.instance.identify('user_123');
await Sankofa.instance.track('Purchase', {
'plan': 'growth',
'amount': 99,
'currency': 'USD',
});