helpshift_wrapper 0.0.8 copy "helpshift_wrapper: ^0.0.8" to clipboard
helpshift_wrapper: ^0.0.8 copied to clipboard

Flutter plugin to integrate Helpshift Support SDK into your flutter app.

HelpShift Community Wrapper #

A plugin to use helpshift sdk into your flutter app within few steps: #

just replace the below parameters in example/lib/src/constants.dart with your domain, and api_key and app_id from your helpshift dashboard.

import 'dart:io';
class Constants {
  static const helpShiftDomain = 'your_helpshift_domain';
  static helpShiftApiKey() {
    if (Platform.isAndroid) {
      return 'your_api_key_for_android';
    } else if (Platform.isIOS) {
      return "your_api_key_for_iOS";
    } else {
      return "";
    }
  }

  static helpShiftAppId() {
    if (Platform.isAndroid) {
      return 'your_app_id_for_android';
    } else if (Platform.isIOS) {
      return "your_app_id_for_iOS";
    } else {
      return "";
    }
  }
}
5
likes
150
points
721
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter plugin to integrate Helpshift Support SDK into your flutter app.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on helpshift_wrapper