func serialize()

in Sources/SPTDataLoaderSwift/ResponseSerializer.swift [42:48]


    func serialize(response: SPTDataLoaderResponse) throws -> Value {
        guard let data = response.body else {
            throw ResponseSerializationError.dataNotFound
        }

        return try decoder.decode(Value.self, from: data)
    }