getTeamInfo static method

Future<NIMTeam?> getTeamInfo(
  1. String teamId
)

查询群资料

Implementation

static Future<NIMTeam?> getTeamInfo(String teamId) {
  return NimCore.instance.teamService.queryTeam(teamId).then((result) {
    if (result.isSuccess) {
      return result.data;
    }
    return null;
  });
}