queryTeam method Null safety

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

Query the group profile. If the data of group profiles does not exist in the local storage, retrieve the data from the server. If the current user does not belong to the group, the interface returns expired data. To update the group profile, call searchTeam(String teamId).

Implementation

Future<NIMResult<NIMSuperTeam>> queryTeam(String teamId) async {
  throw UnimplementedError('queryTeam() is not implemented');
}