response static method

void response(
  1. Response response
)

Implementation

static void response(Response response) {
  debugPrint(
      "$yellow🟢 RESPONSE (${response.statusCode}) → ${response.requestOptions.path}$reset");
  debugPrint("$yellow 🔸 Data: ${response.data}$reset");
}