Property
class PropertyAn object representing a style attribute of a Layer.
- 
                    
                    The property’s unique identifier. Declarationvar id: String { get }
- 
                    
                    The property’s name. Declarationvar name: String { get }
- 
                    
                    CALayer key path for this propery, if applicable. Declarationvar layerKeyPath: String? { get }
- 
                    
                    The type of layer this property applies to. Declarationvar layerType: String { get }
- 
                    
                    The property’s default value. Declarationvar defaultValue: Value { get }
- 
                    
                    Compares two values for equality. The equalsfunction is invoked using infix notation as in the following code snippet:lhs == rhs.Declarationfunc equals(_ lhs: Property) -> BoolParameterslhsA value. rhsAnother value. Return Valuetrueif thelhsandrhsare equal,falseotherwise.