get static method
Implementation
static Future<TestCaseHistory> get(
int caseId, {
int? limit,
int? offset,
}) async {
final response = await FlutterTestRail.instance.client
.request('/get_history_for_case/$caseId', RequestMethod.get);
return TestCaseHistory.fromJson(response!);
}