How would you implement the following pattern in Swift?
The Container class is initialized with a JSON array that contains dictionaries. These dictionar
Container
You indicate a lazy stored property by writing the @lazy attribute before its declaration.”
@lazy var lazyVariable:String? = ""
Please bear in mind, lazy property must have an initialiser.