getSchoolInfo static method

Future<TCICGetSchoolInfoRepModel?> getSchoolInfo()

Implementation

static Future<TCICGetSchoolInfoRepModel?> getSchoolInfo() async {
  var data =
      await HttpClient.post<TCICGetSchoolInfoRepModel, GetSchoolInfoBody>(
        api: "/v1/school/getInfo",
        body: GetSchoolInfoBody(sence: 'default'),
        fromJson: TCICGetSchoolInfoRepModel.fromJson,
      );

  return data;
}