get static method

Future<TestCaseHistory> get(
  1. int caseId, {
  2. int? limit,
  3. int? offset,
})

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!);
}