copyWith method

IntRouteEntry copyWith({
  1. RoutePoint? point,
  2. int? value,
})

Implementation

IntRouteEntry copyWith({
  RoutePoint? point,
  int? value
}) {
  return IntRouteEntry(
    point: point ?? this.point,
    value: value ?? this.value
  );
}