loadGeographyCoords static method

LineString loadGeographyCoords(
  1. Iterable coords
)

Implementation

static LineString loadGeographyCoords(Iterable coords) => LineString()
  ..addAll(
    coords.cast<List>().map(Point.loadGeographyCoords),
  );