querySessionListFiltered method Null safety

Future<NIMResult<List<NIMSession>>> querySessionListFiltered(
  1. List<NIMMessageType> filterMessageTypeList
)

Call the API below to filter the type of the last messages of conversations.

filterMessageType The message type that needs to be filtered out

Implementation

Future<NIMResult<List<NIMSession>>> querySessionListFiltered(
    List<NIMMessageType> filterMessageTypeList) async {
  return _platform.querySessionListFiltered(filterMessageTypeList);
}