ignore static method

OnInvalidUrl ignore({
  1. bool log = true,
})

Implementation

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