react-native-video/ios/Video/DataStructures/SelectedTrackCriteria.swift
Krzysztof Moch 800aee09de
chore: lint project (#3395)
* chore: format swift code
* chore: format clang code
* chore: format kotlin code
* refactor: rename folder "API" to "api"
2023-12-07 08:47:40 +01:00

19 lines
400 B
Swift

struct SelectedTrackCriteria {
let type: String
let value: Any?
let json: NSDictionary?
init(_ json: NSDictionary!) {
guard json != nil else {
self.json = nil
self.type = ""
self.value = nil
return
}
self.json = json
self.type = json["type"] as? String ?? ""
self.value = json["value"]
}
}