ServiceResult.onHttpAccessError constructor
Implementation
factory ServiceResult.onHttpAccessError(
int httpCode, Map<String, String> headers, String body) {
return ServiceResult._(
httpCode: httpCode,
headers: headers,
result: ServiceExecutionResult.failure_invalid_request,
entity: body);
}