copyWith method

InstructionRouteEntry copyWith({
  1. RoutePoint? point,
  2. RouteInstruction? value,
})

Implementation

InstructionRouteEntry copyWith({
  RoutePoint? point,
  RouteInstruction? value
}) {
  return InstructionRouteEntry(
    point: point ?? this.point,
    value: value ?? this.value
  );
}