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