getTeamInfo static method

Future<NIMTeam?> getTeamInfo(
  1. String teamId,
  2. NIMTeamType type
)

查询群资料

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;
  });
}