fromHttpResponse static method

AuthValidateResponse fromHttpResponse(
  1. String body
)

Convert the HTTP response into the AuthValidateResponse

Implementation

static AuthValidateResponse fromHttpResponse(String body) {
  return AuthValidateResponse.fromJson(jsonDecode(body));
}