help_scout_beacon 0.0.2 copy "help_scout_beacon: ^0.0.2" to clipboard
help_scout_beacon: ^0.0.2 copied to clipboard

Streamline customer communications in your app with the Help Scout Beacon SDK for Flutter.

Help Scout Beacon SDK for Flutter #

Streamline customer communications in your app with the Help Scout Beacon SDK for Flutter.

See Demo Add your BeaconId in main.dart

Usage #

Quick start #

Configure the beacon with your Beacon ID and launch the beacon UI by calling open.

final HelpScoutBeacon beacon = HelpScoutBeacon(HSBeaconSettings(beaconId: 'YOUR_BEACON_ID'));
beacon.open();

Identify User #

Optionally you can prefill the beacon with user meta data:

final settings = HSBeaconSettings(beaconId: 'YOUR_BEACON_ID', debugLogging: true);
final HelpScoutBeacon beacon = HelpScoutBeacon(settings);

final user = HSBeaconUser(email: "john.doe@example.com", name: "John Doe");
beacon.identify(beaconUser: user);
beacon.open();

Open a desired page in the Help Scout beacon UI:

beacon.open(route: HSBeaconRoute.ask);
beacon.open(route: HSBeaconRoute.chat);
beacon.open(route: HSBeaconRoute.contactForm);
beacon.open(route: HSBeaconRoute.previousMessages);
beacon.open(route: HSBeaconRoute.docs);
beacon.open(route: HSBeaconRoute.docs, parameter: 'search term');
beacon.open(route: HSBeaconRoute.article, paramter: 'article id');

Cleanup / Logout #

Once done you can remove all data:

beacon.clear()
4
likes
160
pub points
61%
popularity

Publisher

verified publishercoodoo.de

Streamline customer communications in your app with the Help Scout Beacon SDK for Flutter.

Repository (GitHub)
View/report issues

Topics

#customer #helpdesk #support #help

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on help_scout_beacon