ShapeBaseRF constructor

ShapeBaseRF({
  1. String? Id,
  2. bool? ConsumeTapEvents,
  3. required Color color,
  4. bool? Geodesic,
  5. bool? Visible,
  6. int? ZIndex,
  7. ShapeTypeEnum type = ShapeTypeEnum.circe,
})

Implementation

ShapeBaseRF(
    {this.Id,
    this.ConsumeTapEvents,
    required this.color,
    this.Geodesic,
    this.Visible,
    this.ZIndex,
    this.type = ShapeTypeEnum.circe});