onHandle method
Override this method and implement the handling of the url, see the examples in the QueryEntryHandler and PathEntryHandler.
Implementation
@override
String onHandle(String url, Path entry) {
var path = '{${entry.name}}';
var mutatedUrl = url.replaceAll(path, entry.value);
return mutatedUrl;
}