copyWith method

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

Implementation

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