jsonDecode static method

dynamic jsonDecode({
  1. required Response response,
})

Implementation

static jsonDecode({required http.Response response}) {
  return convert.jsonDecode(response.body);
}