func fetch()

in Sources/XCMetricsClient/Mobius/Effect Handlers/DumpParser/DictionaryFetcher.swift [28:35]


    func fetch<T: Defaultable>(_ potentialKeys: String...) -> T {
        for potentialKey in potentialKeys {
            if let value = self[potentialKey], let typedValue = value as? T {
                return typedValue
            }
        }
        return T.defaultValue
    }