ignore static method
Implementation
static OnInvalidUrl ignore({bool log = true}) {
return (failedRoute) {
if (log) {
dev.log(
'${failedRoute.path} is not a valid URL. Excluded from routing config',
);
}
};
}
static OnInvalidUrl ignore({bool log = true}) {
return (failedRoute) {
if (log) {
dev.log(
'${failedRoute.path} is not a valid URL. Excluded from routing config',
);
}
};
}