copyWith method

PublicTransportRouteDirectionId copyWith({
  1. int? value,
})

Implementation

PublicTransportRouteDirectionId copyWith({
  int? value
}) {
  return PublicTransportRouteDirectionId(
    value ?? this.value
  );
}