showConversations method

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

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},
    );
  }
}