Path constructor

const Path({
  1. required List<GeocodedLocation> points,
  2. bool encoded,
  3. int? weight,
  4. Color? color,
  5. Color? fillColor,
  6. bool? geodesic,
})

Draws a path

Implementation

const factory Path({
  required List<GeocodedLocation> points,
  bool encoded,
  int? weight,
  Color? color,
  Color? fillColor,
  bool? geodesic,
}) = _Path;