copyWith method
Implementation
Feature copyWith({
List<num>? bbox,
String? type,
Properties? properties,
Geometry? geometry,
}) =>
Feature(
bbox: bbox ?? this.bbox,
type: type ?? this.type,
properties: properties ?? this.properties,
geometry: geometry ?? this.geometry,
);