queryTeam method Null safety

Future<NIMResult<NIMSuperTeam>> queryTeam(
  1. String teamId
)

Get group information. If no group information exists in the local database, the SDK will query the group information from the CommsEase IM server. If the current user is not in the group, the API might return obsolete information. If the current user needs the latest data, please call searchTeam(String teamId). teamId Group ID

Implementation

Future<NIMResult<NIMSuperTeam>> queryTeam(String teamId) async {
  return _platform.queryTeam(teamId);
}