PowerMarker constructor

const PowerMarker({
  1. required LatLng point,
  2. required Widget child,
  3. Alignment? alignment,
  4. double height = 30,
  5. Key? key,
  6. bool? rotate,
  7. double width = 30,
  8. Map<String, Object?>? properties,
})

Implementation

const PowerMarker({
  required super.point,
  required super.child,
  super.alignment,
  super.height,
  super.key,
  super.rotate,
  super.width,
  this.properties,
});