MarkerRF constructor

MarkerRF({
  1. required String Id,
  2. CoordinateRF? Positions,
  3. required String Image,
  4. double Width = 50,
  5. double Height = 50,
  6. String Type = "pin",
  7. Alignment alignment = Alignment.center,
  8. double? Bearing,
  9. int? Duration,
  10. double? heading,
  11. bool? Draggable = true,
  12. bool Visible = false,
  13. TickerProvider onTap()?,
  14. IAnimateRF? Animate,
  15. EdgeInsets? padding,
})

Implementation

MarkerRF({
  required this.Id,
  this.Positions,
  required this.Image,
  this.Width = 50,
  this.Height = 50,
  this.Type = "pin",
  this.alignment = Alignment.center,
  this.Bearing,
  this.Duration,
  this.heading,
  this.Draggable = true,
  this.Visible = false,
  this.onTap,
  this.Animate,
  this.padding,
});