I am fairly new to computed properties and am trying to recongnize them in code samples... I came accross this in one of the tutorials I am learning on URLSession. Would this var method: String property be a computed property?
var method: String {
switch self {
case .getPublicGists():
return "GET"
}
}Thanks!