Flutter integration for the InsForge SDK — secure on-device session storage and a one-line initializer.
It re-exports the entire pure-Dart
insforge
SDK, and adds:
SecureSessionStorage— aSessionStoragebacked byflutter_secure_storage(Keychain on iOS, EncryptedSharedPreferences/Keystore on Android).Insforge— a global singleton youinitializeonce at startup.
import 'package:insforge_flutter/insforge_flutter.dart';
await Insforge.initialize(
url: 'https://your.insforge.app',
anonKey: 'anon-key',
);
final user = Insforge.instance.auth.currentUser;See the repository root README for the full guide.