AI-generated Key Takeaways
- 
          GMSMutableFeatureStyleis a mutable version ofGMSFeatureStyle, allowing for modification of style properties.
- 
          It provides properties to customize the fill color ( fillColor), stroke color (strokeColor), stroke width (strokeWidth), and point radius (pointRadius) of features.
- 
          You can create a new mutable style instance using the +stylemethod.
GMSMutableFeatureStyle
@interface GMSMutableFeatureStyle : GMSFeatureStyleMutable version of GMSFeatureStyle.
- 
                  
                  DeclarationSwift @NSCopying var fillColor: UIColor? { get set }Objective-C @property(nonatomic, readwrite, copy, nullable) UIColor *fillColor
- 
                  
                  DeclarationSwift @NSCopying var strokeColor: UIColor? { get set }Objective-C @property(nonatomic, readwrite, copy, nullable) UIColor *strokeColor
- 
                  
                  DeclarationSwift var strokeWidth: CGFloat { get set }Objective-C @property(nonatomic, readwrite) CGFloat strokeWidth
- 
                  
                  DeclarationSwift var pointRadius: CGFloat { get set }Objective-C @property(nonatomic, readwrite) CGFloat pointRadius
- 
                  
                  Creates a new mutable style. DeclarationObjective-C + (nonnull instancetype)style;