queryTeamListById method Null safety

Future<NIMResult<List<NIMSuperTeam>>> queryTeamListById(
  1. List<String> idList
)

Get the information about multiple groups by group IDs at a time. idList The list of group IDs

Implementation

Future<NIMResult<List<NIMSuperTeam>>> queryTeamListById(
    List<String> idList) async {
  return _platform.queryTeamListById(idList);
}