How do you declare a let constant so that it exists in several functions of the same class and you can call it as self?
That is, in objective-C it was enough to do before @implementation a @property (strong, nonatomic) NSString * variable; and then in the method (function) that we want to use it, call it as self.variable