copyWith method

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

Implementation

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