showConversations static method

void showConversations({
  1. String? filteredViewTitle,
  2. List<String>? tags,
})

Displays list of Support Channels (Channel List Activity) through which users can converse with you

Implementation

static void showConversations(
    {String? filteredViewTitle, List<String>? tags}) async {
  if (filteredViewTitle == null && tags == null) {
    await _channel.invokeMethod('showConversations');
  } else {
    await _channel.invokeMethod(
      'showConversationsWithOptions',
      <String, dynamic>{'filteredViewTitle': filteredViewTitle, 'tags': tags},
    );
  }
}