FeatureObject constructor

const FeatureObject({
  1. Box? bounds,
  2. Map<String, dynamic>? custom,
})

A feature object with optional bounds and custom properties.

Implementation

const FeatureObject({super.bounds, Map<String, dynamic>? custom})
    : _custom = custom;