JWR.fromJson constructor

JWR.fromJson(
  1. Json responseContext
)

Implementation

JWR.fromJson(Json responseContext) {
  body = responseContext['body'];
  headers = responseContext['headers'] ?? {};
  statusCode = responseContext['statusCode'] ?? 200;
}