replyListFromMap function
Implementation
List<NIMMessage>? replyListFromMap(List<dynamic>? replyListMap) =>
replyListMap == null
? null
: replyListMap
.map((e) => NIMMessage.fromMap(Map<String, dynamic>.from(e)))
.toList();