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