PowerGeoFeature constructor

PowerGeoFeature({
  1. Map<String, Object?>? properties,
  2. List<double>? bbox,
  3. String? title,
  4. required dynamic id,
})

Creates a PowerGeoFeature instance with the provided properties.

  • properties: The properties associated with the feature.
  • bbox: The bounding box of the feature.
  • title: The title of the feature.
  • id: The unique identifier of the feature.

Implementation

PowerGeoFeature({this.properties, this.bbox, this.title, required this.id});