find<T extends Conversation> method

Future<List<T>> find<T extends Conversation>()

To find the Conversation.

Returns a List of the Conversation.

Important: If you want to find TemporaryConversation, should use ConversationQuery.findTemporaryConversations.

Implementation

Future<List<T>> find<T extends Conversation>() async {
  return await _find();
}