getBugList function

Future<BugReportListModel> getBugList()

Implementation

Future<BugReportListModel> getBugList() async {
  return BugReportListModel.fromMap(await (handleResponse(await buildHttpResponse(APIEndPoint.bugReportList, method: HttpMethod.GET))));
}