Replaces the provided from with the specified to in the routes.
from
to
void replace(String from, String to) { routes.value = routes.map((e) => e.replaceAll(from, to)).toList(); }