fromJson static method
Convert the body of the HTTP response into the AuthRevokeResponse
Implementation
static AuthValidateResponse fromJson(Map<String, dynamic> json) {
return AuthValidateResponse(
status: json['status'],
message: json['message'],
clientId: json['client_id'],
login: json['login'],
scopes: _convertScopeList(json),
userId: json['user_id'],
expiresIn: json['expires_in'],
);
}