copyWith method

GeoPointRouteEntry copyWith({
  1. RoutePoint? point,
  2. GeoPoint? value,
})

Implementation

GeoPointRouteEntry copyWith({
  RoutePoint? point,
  GeoPoint? value
}) {
  return GeoPointRouteEntry(
    point: point ?? this.point,
    value: value ?? this.value
  );
}