Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.09 KB

README.md

File metadata and controls

51 lines (36 loc) · 1.09 KB

Zendesk SDk Flutter

Currently only supports Messaging on Zendesk V2 SDK

  • Better UI (Native)
  • Chat history
  • Answer Bot

Setup

1. Enable agent work-space

2. Enable Messaging

3. Add channel and get key

How to use?

Initialize

 final String androidChannelKey = '';
 final String iosChannelKey = '';

  @override
  void initState() {
    super.initState();
    ZendeskMessaging.initialize(
      androidChannelKey: androidChannelKey,
      iosChannelKey: iosChannelKey,
    );
  }

just use initialize() one time

Show

ZendeskMessaging.show();

You can use in onTap()

Future Function

  • Push Notifications

Link