Marker constructor

Marker({
  1. required Widget child,
  2. required LatLng latLng,
  3. Alignment alignment = Alignment.center,
  4. double width = 20,
  5. double height = 20,
})

Implementation

Marker(
    {required this.child,
    required this.latLng,
    this.alignment = Alignment.center,
    this.width = 20,
    this.height = 20});