getConversationListWithoutFormat method

  1. @override
Future<LinkedHashMap> getConversationListWithoutFormat({
  1. required String nextSeq,
  2. required int count,
})
override

Implementation

@override
Future<LinkedHashMap<dynamic, dynamic>> getConversationListWithoutFormat({
  required String nextSeq,
  required int count,
}) async {
  return await _channel.invokeMethod(
    "getConversationList",
    buildConversationManagerParam(
      {
        "nextSeq": nextSeq,
        "count": count,
      },
    ),
  );
}