copyWith method

RouteLevelInfoRouteLongEntry copyWith({
  1. RoutePoint? point,
  2. RouteDistance? length,
  3. RouteLevelInfo? value,
})

Implementation

RouteLevelInfoRouteLongEntry copyWith({
  RoutePoint? point,
  RouteDistance? length,
  RouteLevelInfo? value
}) {
  return RouteLevelInfoRouteLongEntry(
    point: point ?? this.point,
    length: length ?? this.length,
    value: value ?? this.value
  );
}