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