Circle Paint
class CirclePaint(color: StyleValue<Color> = StyleValue.Constant(Color.Red), var radius: StyleValue<Double> = StyleValue.Constant(6.0), var sortKey: StyleValue<Double>? = null, var eventEmitter: LayerEventEmitter? = null) : Paint
Constructors
Link copied to clipboard
constructor(color: StyleValue<Color> = StyleValue.Constant(Color.Red), radius: StyleValue<Double> = StyleValue.Constant(6.0), sortKey: StyleValue<Double>? = null, eventEmitter: LayerEventEmitter? = null)
Properties
Functions
Link copied to clipboard
fun copy(color: StyleValue<Color> = this.color, radius: StyleValue<Double> = this.radius, sortKey: StyleValue<Double>? = this.sortKey, eventEmitter: LayerEventEmitter? = this.eventEmitter): CirclePaint
Custom copy function to replicate data class behavior.