copyWith method
Implementation
DrawRouting copyWith({
String? type,
List<num>? bbox,
List<Feature>? features,
Metadata? metadata,
}) =>
DrawRouting(
type: type ?? this.type,
bbox: bbox ?? this.bbox,
features: features ?? this.features,
metadata: metadata ?? this.metadata,
);