gigantier_sdk 1.0.7 copy "gigantier_sdk: ^1.0.7" to clipboard
gigantier_sdk: ^1.0.7 copied to clipboard

outdated

SDK for Gigantier API

Gigantier Flutter #

SDK to connect your Flutter app to Giganter API.

API reference

Installation #

Add this to your package's pubspec.yaml file:

dependencies:
  gigantier_sdk: ^1.0.5

Then install the package with pub get or flutter pub get.

Usage #

To get started, instantiate a new Gigantier client with your credentials.

Note: This requires a Gigantier account.

import 'package:gigantier_sdk/gigantier.dart';

...

final client = Gigantier(
  hostname, 
  clientId, 
  clientSecret, 
  scope, 
  appName
);

Check out the API reference to learn more about authenticating and the available endpoints.

Contributing #

Thank you for considering contributing to Gigantier Flutter SDK.