Path.encodedPolyline constructor

const Path.encodedPolyline(
  1. String encodedPolyline, {
  2. int? weight,
  3. Color? color,
  4. Color? fillColor,
  5. bool? geodesic,
})

Draws a path from the provided encoded polyline string.

Implementation

const factory Path.encodedPolyline(
  String encodedPolyline, {
  int? weight,
  Color? color,
  Color? fillColor,
  bool? geodesic,
}) = EncodedPath;