hs_wrapper 0.0.7 copy "hs_wrapper: ^0.0.7" to clipboard
hs_wrapper: ^0.0.7 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 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 "";
    }
  }
}
1
likes
150
points
27
downloads

Publisher

unverified uploader

Weekly Downloads

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

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on hs_wrapper

Packages that implement hs_wrapper