muteVideoAll static method

课堂静音 用于对课堂所有成员进行视频静音操作 通过HTTP请求与后端API交互

Implementation

static Future<TCICMuteVideoAllRepModel?> muteVideoAll(MuteVideoAllBody body) async {
  var data = await HttpClient.post<TCICMuteVideoAllRepModel, MuteVideoAllBody>(
    api: "/v1/class/muteVideoAll",
    body: body,
    fromJson: TCICMuteVideoAllRepModel.fromJson,
  );

  return data;
}