copyWith method

MillisecondsRouteEntry copyWith({
  1. RoutePoint? point,
  2. Duration? value,
})

Implementation

MillisecondsRouteEntry copyWith({
  RoutePoint? point,
  Duration? value
}) {
  return MillisecondsRouteEntry(
    point: point ?? this.point,
    value: value ?? this.value
  );
}