getMemberInvitor method Null safety

Future<NIMResult<Map<String, String>>> getMemberInvitor(
  1. String teamId,
  2. List<String> accids
)

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);
}