searchRoamingMsg method Null safety
Search cloud messages of one-to-one chats.
Implementation
Future<NIMResult<List<NIMMessage>>> searchRoamingMsg(
String otherAccid,
int fromTime,
int endTime,
String keyword,
int limit,
bool reverse) async {
return _platform.searchRoamingMsg(
otherAccid, fromTime, endTime, keyword, limit, reverse);
}