recallMessage static method

撤回课堂消息 用于撤回已发送的课堂消息 通过HTTP请求与后端API交互

Implementation

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

  return data;
}