jsonDecode static method

dynamic jsonDecode(
  1. dynamic response
)

Implementation

static jsonDecode(var response) {
  return json.decode(utf8.decode(response.bodyBytes));
}