setClassLayout static method

设置课堂布局

Implementation

static Future<TCICSetClassLayoutRepModel?> setClassLayout(SetClassLayoutBody body) async {
  var data = await HttpClient.post<TCICSetClassLayoutRepModel, SetClassLayoutBody>(
    api: "/v1/class/setLayout",
    body: body,
    fromJson: TCICSetClassLayoutRepModel.fromJson,
  );
  return data;
}