Prefer var

Because Dart != Java :)
This commit is contained in:
Seth Ladd 2017-05-15 08:51:29 -07:00 committed by GitHub
parent 4a4c62a1ae
commit 16a03d0d60
1 changed files with 2 additions and 2 deletions

View File

@ -41,14 +41,14 @@ There is a pretty sweet example project in the `example` folder. Check it out. O
First, you should define a new `Router` object by initializing it as such: First, you should define a new `Router` object by initializing it as such:
```dart ```dart
final Router router = new Router(); final router = new Router();
``` ```
It may be convenient for you to store the router globally/statically so that It may be convenient for you to store the router globally/statically so that
you can access the router in other areas in your application. you can access the router in other areas in your application.
After instantiating the router, you will need to define your routes and your route handlers: After instantiating the router, you will need to define your routes and your route handlers:
```dart ```dart
RouteHandler usersHandler = (Map<String, String> params) { var usersHandler = (Map<String, String> params) {
return new UsersScreen(params["id"]); return new UsersScreen(params["id"]);
}; };