flx_id_binder 1.1.2 copy "flx_id_binder: ^1.1.2" to clipboard
flx_id_binder: ^1.1.2 copied to clipboard

Flx Id api binder for Dart language

Flx Id Binder #

Flx Id Api Binder for Dart

Init #

In main method invoke FlxId.init method async

For dart

Future<void> main() async {
    FlxId.init();
}

For flutter

void main() {
    WidgetsFlutterBinding.ensureInitialized();
    FlxId.init().then((value) => runApp(MyApp()));
}

Or invoke FlxId.init method before you invoke other methods from FlxId class

For example

await FlxId.init();

await FlxId.oauth.signUp(
    firstName: "",
    lastName: "",
    nickname: "",
    password: "",
    email: "",
);

var result = await FlxId.oauth.signIn(
    email: "",
    password: "",
    appId: "",
    appSecret: "",
    deviceFingerprint: "",
    permissions: [ ],
);

// ...

1
likes
90
pub points
0%
popularity

Publisher

verified publisherflx.pub

Flx Id api binder for Dart language

Homepage

Documentation

API reference

License

GPL-3.0 (LICENSE)

Dependencies

crypto, dio, flutter, get, platform_device_id, shared_preferences

More

Packages that depend on flx_id_binder