fetchGroupMemberAttributes method

Future<Map<String, String>> fetchGroupMemberAttributes({
  1. required String groupId,
  2. String? userId,
})

Implementation

Future<Map<String, String>> fetchGroupMemberAttributes({
  required String groupId,
  String? userId,
}) {
  return checkResult(ChatSDKEvent.fetchGroupMemberAttributes, () {
    return Client.getInstance.groupManager.fetchMemberAttributes(
      groupId: groupId,
      userId: userId,
    );
  });
}