PlaceGeo constructor

const PlaceGeo({
  1. required String type,
  2. required List<double> bbox,
  3. required Map<String, dynamic> properties,
})

Implementation

const factory PlaceGeo({
  /// The place type.
  required String type,

  /// The bounding box.
  required List<double> bbox,

  /// The place properties.
  required Map<String, dynamic> properties,
}) = _PlaceGeo;