flutter_carrotquest 1.0.0-dev.1 copy "flutter_carrotquest: ^1.0.0-dev.1" to clipboard
flutter_carrotquest: ^1.0.0-dev.1 copied to clipboard

outdated

A Carrot quest flutter plugin for Android and IOS. You can find a description of the service at https://www.carrotquest.io

flutter_carrotquest #

A Carrot quest flutter plugin for Android and IOS.

Implementation #

Android #

android {
    
    defaultConfig {
        ...
        minSdkVersion 21
        ...
    }
    ...
    packagingOptions {
        exclude 'META-INF/*.kotlin_module'
    }
    ...
}

IOS #

Nothing is required

Getting Started #

import 'package:flutter_carrotquest/flutter_carrotquest.dart';
await Carrot.setup(apiKey: 'your apiKey', appId: 'your appId')
        .catchError((onError) => print(onError));
// Android only
await Carrot.setDebug()
        .catchError((onError) => print(onError));
await Carrot.auth(userId: 'your userId', userAuthKey: 'your userAuthKey')
        .catchError((onError) => print(onError));
// Android only
await Carrot.deinit()
        .catchError((onError) => print(onError));
await Carrot.openChat();

Features and bugs #

Please file feature requests and bugs at the issue tracker.

4
likes
0
pub points
0%
popularity

Publisher

verified publisherdipdev.studio

A Carrot quest flutter plugin for Android and IOS. You can find a description of the service at https://www.carrotquest.io

Repository (GitLab)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_carrotquest