draftList function
Implementation
Future<DraftListModel> draftList() async {
String businessId = "?business_id=${getIntAsync(SELECTED_BUSINESS_ID).toString()}";
return DraftListModel.fromJson(await handleResponse(await buildHttpResponse("${APIEndPoint.draftList}$businessId", method: HttpMethod.GET)));
}