getTeamInfoByIds method

Future<NIMResult<List<NIMTeam>>> getTeamInfoByIds(
  1. List<String> teamIds,
  2. NIMTeamType teamType
)

根据群组id获取群组信息

@param teamIds 群组Id列表 @param teamType 群组类型

Implementation

Future<NIMResult<List<NIMTeam>>> getTeamInfoByIds(
    List<String> teamIds, NIMTeamType teamType) async {
  return _platform.getTeamInfoByIds(teamIds, teamType);
}