replace method

void replace(
  1. String from,
  2. String to
)

Replaces the provided from with the specified to in the routes.

Implementation

void replace(String from, String to) {
  routes.value = routes.map((e) => e.replaceAll(from, to)).toList();
}