copyWith method

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

Implementation

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