copyWith method
Implementation
SearchState copyWith(
{bool? displayManualMarker,
List<Feature>? places,
List<Feature>? history}) =>
SearchState(
displayManualMarker: displayManualMarker ?? this.displayManualMarker,
places: places ?? this.places,
history: history ?? this.history,
);