I'm trying to create a function that has a closure. Nothing is passed to the function, just after it finishes another function has to be called. Something like this:
  func addGradient(closure: syntax) {
(closure: _ in ("function call here")   )}
so it can be called similiar to this
addGradient(closure: "function to be called")
