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