Path<T extends LatLng>.from constructor
Path<T extends LatLng>.from (
- Iterable<
T> coordinates, { - LatLngFactory factory = _defaultLatLngFactory,
Implementation
Path.from(final Iterable<T> coordinates,
{final LatLngFactory factory = _defaultLatLngFactory})
: _coordinates = List<T>.from(coordinates),
_latLngFactory = factory;