getMemberInvitor method Null safety
Get group members' inviters. teamId: The group ID accids: The group members' accid (up to 200 accid) The returned data is key-value pair (the key represents the group member's accid, the value represents the inviter's accid)
Implementation
Future<NIMResult<Map<String, String>>> getMemberInvitor(
String teamId, List<String> accids) {
return _platform.getMemberInvitor(teamId, accids);
}