insertRoute method

App insertRoute(
  1. int index,
  2. Route route
)

Implementation

App insertRoute(int index, Route route) {
  _routes.insert(index, route);
  return this;
}