getTeamInfo static method
查询群资料
Implementation
static Future<NIMTeam?> getTeamInfo(String teamId) {
return NimCore.instance.teamService.queryTeam(teamId).then((result) {
if (result.isSuccess) {
return result.data;
}
return null;
});
}