getConversationListByConversaionIds method Null safety

Future<V2TimValueCallback<List<V2TimConversation>>> getConversationListByConversaionIds(
  1. {required List<String> conversationIDList}
)

Get a specified conversation list by conversation ID

Implementation

Future<V2TimValueCallback<List<V2TimConversation>>>
    getConversationListByConversaionIds({
  required List<String> conversationIDList,
}) async {
  return ImFlutterPlatform.instance.getConversationListByConversaionIds(
      conversationIDList: conversationIDList);
}