PowerGeoLineString constructor
Creates a PowerGeoLineString instance with the specified properties.
properties: Optional map of properties associated with the line string.bbox: Optional bounding box information.title: Optional title for the line string.id: Unique identifier for the line string.geometry: The geographic line string geometry.
Implementation
PowerGeoLineString({
Map<String, dynamic>? properties,
List<double>? bbox,
String? title,
dynamic id,
required this.geometry,
}) : super(properties: properties, bbox: bbox, title: title, id: id);