get static method

Future<TestCase> get(
  1. int caseId
)

Implementation

static Future<TestCase> get(int caseId) async {
  final response = await TestRail.instance.client
      .request('/get_case/$caseId', RequestMethod.get);
  return TestCase.fromJson(response);
}