Skip to content

Flutter SDK

The Vasat Flutter SDK uses Drift. You can initialize the vasat server instace on your main like below:

dart
VasatDrift vasat = VasatDrift(
          config:VasatConfig(
              host: "https://your-vasat.host.server/vasat",
              clientId: "vasat_customer",
              clientSecret: "xxx",
              storageProvider: AppService.appDatabase,
              debug: true
          )
      );