MultiLineString.withFactory constructor

MultiLineString.withFactory(
  1. List<LineString>? lineStrings,
  2. GeometryFactory factory
)

@param lineStrings the LineStrings for this MultiLineString, or null or an empty array to create the empty geometry. Elements may be empty LineStrings, but not nulls.

Implementation

MultiLineString.withFactory(
    List<LineString>? lineStrings, GeometryFactory factory)
    : super.withFactory(lineStrings, factory);