fetchSubReport method

Future<Response> fetchSubReport(
  1. dynamic reportTypeId
)

Implementation

Future<http.Response> fetchSubReport(reportTypeId) async {
  return get(
      Uri.parse(
          '$apiURL/report-sub-types/byReportTypeId?reportType=$reportTypeId'),
      headers: {
        "token":
            "cnejwi8c9wehnd8fchni2x239jxexnjx2n23i8xn3oifr0cwd32fjnrf453vreve"
      });
}