copyWith method

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

Implementation

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