Feature constructor
Feature({})
Implementation
factory Feature({
dynamic id,
required Geometry geometry,
Map<String, dynamic>? properties,
String? source,
}) =>
Feature.fromJsObject(FeatureJsImpl(
type: 'Feature',
id: id,
geometry: geometry.jsObject,
properties: properties == null ? jsify({}) : jsify(properties),
source: source,
));