copyWith method
Implementation
LanesCalloutMapPosition copyWith({
MapId? mapId,
RoutePoint? routePoint,
GeoPoint? geoPoint
}) {
return LanesCalloutMapPosition(
mapId: mapId ?? this.mapId,
routePoint: routePoint ?? this.routePoint,
geoPoint: geoPoint ?? this.geoPoint
);
}